+1 vote
1.1k views
in Laravel by

How can I tell Laravel-5 which Javascript files I want to include in a template.

For example, I have my Controller with something like this:

return view('butchery', ['locations' => $locations, 'classTypes' => $classTypes]);

I have my butchery.blade.php template with my html:

@extends('app')
@section('content')
<!-- html here -->
@endsection

...and I have my app.blade.php container template with all my javascript files at the bottom. If I didn't want to include one of the javascript files in my view, how would I do that?

app.blade.php:

<!DOCTYPE HTML>
<!--[if IE 8]><html class="ie8"> <![endif]-->
<!--[if gt IE 8]><!--><html><!--<![endif]-->

<head></head>
<body>@yield('content')</body>
<script src="/js/mobile-menu.js"></script>
<!-- apply voucher code --> 
<script src="/js/voucher-apply.js"></script>
</html>

Your answer

Your name to display (optional):
Privacy: Your email address will only be used for sending these notifications.
Anti-spam verification:
To avoid this verification in future, please log in or register.

Related questions

0 votes
1 answer 776 views
asked Jun 13, 2016 in Magento by Jelena
0 votes
1 answer 15.5k views
+1 vote
1 answer 528 views
0 votes
1 answer 619 views
0 votes
1 answer 590 views
0 votes
1 answer 609 views
...