So, I know the front-end styling has nothing to do with Laravel directly, but here's the thing:
I used to write everything for my site -- login authentication systems, database update forms, even the site's templating engine -- in vanilla PHP. Of all things. Every time I had a new project with a new use case, I'd spend a solid half of the time on setup - usually writing a framework, creating a database update tool, then filling said database.
And those were not especially robust; if I suddenly realised that one thing didn't work or was wrong, I'd have to go back through and update large swathes of my work.
But Laravel has like...everything I could ever need, and it just works out of the box, so I get to skip the drudgery of (to use my favourite phrase) reinventing the wheel and get to the actual fun bits -- at scale. I can fill my local tables with whatever junk links I want, and just know that I can quickly and safely transform every row of the table if I decided down the line that a different structure worked better.
SO...I can focus on front-end styling without worrying about whether I'll have to go through and rearrange 5 different webpages when I decide to change the page structure completely. :)