xxxxxxxxxx
If you are using Blade templating you can add a yield('assets') in your <head>.
<head>
<title></title>
<!-- all your other assets here -->
@yield('assets')
</head>
Then in your pages you can just include them.
@extends('layout')
@section('assets')
<link rel="stylesheet" href="path/to/asset.css">
@endsection
@section('content')
This is the content.
@endsection