wzulfikar/laravel-bootstrap

There is no license information available for the latest version (dev-master) of this package.

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 2

Language:CSS

pkg:composer/wzulfikar/laravel-bootstrap

dev-master 2015-12-16 08:03 UTC

This package is not auto-updated.

Last update: 2025-10-12 00:41:35 UTC


README

Bootstrap template for laravel with boilerplate

Installation

  • Copy the bootstrap folder to resources/views/layouts. Your resources directory will look like this:

image

  • Copy bootstrap/assets to public/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);

});