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
Define a common layout and include all .js and .css file on that layout and than bind your page with this layout.
Layout:
App Name - @yield('title')
@section('sidebar')
This is the master sidebar.
@show
@yield('content')
Where: @yield directive is used to display the contents of a given section.
View:
@extends('layouts.default')
@section('content')
i am the home page
@endsection