wzulfikar/laravel-bootstrap is a Laravel package.
It currently has 2 GitHub stars and 6 downloads on Packagist.
Install it with composer require wzulfikar/laravel-bootstrap.
Discover more Laravel packages by wzulfikar
or browse all Laravel packages to compare alternatives.
Last updated
Bootstrap template for laravel with boilerplate
bootstrap folder to resources/views/layouts. Your resources directory will look like this:
bootstrap/assets to public/assetsRoute::get('bootstrap/{playground?}',function($playground = 'readme'){
$validator = Validator::make(Request::all(), [
'title' => 'required|unique:posts|max:255',
'body' => 'required',
]);
// Uncomment below code to display template with no error banner
// return view('layouts.bootstrap.playground.'.$playground);
return view('layouts.bootstrap.playground.'.$playground)->withErrors($validator);
});