how to create seed in laravel Unknown 12:57 AM use Illuminate \ Database \ Seeder ; use Legend \ User ; class UserTableSeeder extends Seeder { public function run () { ... Read more No comments:
how to create migration table in laravel Unknown 12:46 AMFirst you need to run comment as bellow: php artisan make : migration create_users_table -- create = users Then you will get your... Read more No comments:
how to use Files in laravel Unknown 8:31 PMFile :: exists ( 'path' ); File :: get ( 'path' ); File :: getRemote ( 'path' ); File :: getRequire ( 'path... Read more No comments:
how to use Forms in laravel Unknown 8:31 PMForm :: open ([ 'url' => 'foo/bar' , 'method' => 'PUT' ]); Form :: open ([ 'route' =... Read more No comments:
how to use Queues in laravel Unknown 8:30 PMQueue :: push ( 'SendMail' , [ 'message' => $message ]); Queue :: push ( 'SendEmail@send' , [ 'message... Read more No comments:
how to use Redirects in laravel Unknown 8:29 PMreturn Redirect :: to ( 'foo/bar' ); return Redirect :: to ( 'foo/bar' )-> with ( 'key' , 'value' ); ... Read more No comments:
how to use Cookies in laravel Unknown 8:29 PMCookie :: get ( 'key' ); // Create a cookie that lasts for ever Cookie :: forever ( 'key' , 'value' ); // Set a c... Read more No comments: