I want to include a css all css and js in single page and load it in all page.Now If I want to include bootstrap.css and bootstrap.js in welcome page I have included in welcome
Here is the steps you can follow
To create a master template //master.blade.php
@yield('header')
@yield('page-body')
Now Extend this layout in second.blade.php
@extend('master.blade')
@section('header')
@endsection
@section('page-body')
{{!-- content of body --}}
@endsection