Laravel-5.7-with-Admin-LTE-3-Boiler-Plate
Laravel-5.7-with-Admin-LTE-3-Boiler-Plate copied to clipboard
@yield('javascript') in master.blade.php
i have downloaded and installed your code I was wondering why are You using
@yield('javascript')
Bacause some of the pages dont have the any other extra js
For that situation
//in some child blade templates
@push('pushName')
@endpush
and in the master.blade.php
@stack('pushName')