Showing posts with label laravel. Show all posts
Showing posts with label laravel. Show all posts

Sunday, May 10, 2015

Sheduling artisan commands

Find app/console/Kernel.php@shedule method
...
$shedule->command('namespace:command_name')->daily();
...
Artisan CLI - Laravel - The PHP Framework For Web Artisans: " Guzzle 5 "

Wednesday, July 23, 2014

Tuesday, July 1, 2014

Laravel Resource Controller

Actions Handled By Resource Controller

VerbPathActionRoute Name
GET/resourceindexresource.index
GET/resource/createcreateresource.create
POST/resourcestoreresource.store
GET/resource/{resource}showresource.show
GET/resource/{resource}/editeditresource.edit
PUT/PATCH/resource/{resource}updateresource.update
DELETE/resource/{resource}destroyresource.destroy