- Download the Zip thru GitHub by clicking Download ZIP.
- Goto the downloaded folder
- type: composer install
- php artisan serve
File > Settings > Terminal > Shell Path C:\Program Files\Git\bin\bash.exe -login -i
All records: Model::get(); Individual Record: Model::find(1); Create record: Model::create(['column' => 'value']);
Validation Apply: $v = Validator::make(Input::all(), ['field' => 'rule']); Check Validation Status: $v->fais(); Validation Message: ->withErrors($v);