@LeBlaireau Why not add them in the views?
In your master view add a yield right at the bottom before the closing body tag.
master.blade.php
<html>
<head>
<title>Your Title</title>
<link href="/css/main.css" ref="stylesheet"> // including standard css across all pages
@yield('header') // getting page-specific content such as custom styles
</head>
<body>
@yield('content') // including your main content
<script src="/js/main.js"></script> // including standard script across all pages
@yield('footer') // getting page-specific content such as custom scripts
</body>
</html>
And then on the pages that you need to add extra JavaScripts, you can by including a footer section like so:
page.blade.php
@extends('master')
@section('header')
// your extra stylesheets here, as well as anything else you want to include before the rest of the page loads
@endsection
@section('content')
// your main content here
@endsection
@section('footer')
// your extra scripts here
<script src="..."></script>
@endsection