wzulfikar / laravel-bootstrap

Bootstrap template for laravel with boilerplate
2 stars 0 forks source link

laravel-bootstrap

Bootstrap template for laravel with boilerplate

Installation

image

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);

});