wzulfikar/laravel-bootstrap
laravel-bootstrap
Bootstrap template for laravel with boilerplate
Installation
- Copy the
bootstrapfolder toresources/views/layouts. Your resources directory will look like this:

- Copy
bootstrap/assetstopublic/assets - Setup route to test
Route::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);
});
- visit localhost:8000/bootstrap
(assuming that your laravel is hosted locally at port 8000)
Related Packages
laravel-frontend-presets/material-dashboard
Laravel 9.x Front-end preset for material dashboard
294,883
263
devrabiul/laravel-toaster-magic
Laravel Toaster Magic is a lightweight, flexible toast library for Laravel proje...
93,813
227