I'm starting now with Laravel 5.1, I was left with a question regarding blade.
For example, I want to pass several CSS or JS files from the page in question using Blade notation. My main file looks like this:
<html>
<head>
<link href="@yield('css')" rel="stylesheet">
<title>@yield('titulo')</title>
</head>
And on the page like this:
@section('css', '/css/app.css')
How can I make a page load several CSS files? Is it possible?