laravel create resource controller
php artisan make:controller PhotoController --resource --model=Photo
laravel create resource controller
php artisan make:controller PhotoController --resource --model=Photo
resource controller in laravel
php artisan make:controller RequestRevisionController --resource
how to create resource controller in laravel
Resource Controller:This controller will create all CRUD methods
php artisan make:controller nameOfController --resource
how to create resource in laravel
php artisan make:model -a -r modelName
laravel resource controller create example
<?php
...
/**
* Store a newly created resource in storage.
*
* @return Response
*/
public function store()
{
// validate
// read more on validation at http://laravel.com/docs/validation
$rules = array(
'name' => 'required',
'email' => 'required|email',
'shark_level' => 'required|numeric'
);
$validator = Validator::make(Input::all(), $rules);
// process the login
if ($validator->fails()) {
return Redirect::to('sharks/create')
->withErrors($validator)
->withInput(Input::except('password'));
} else {
// store
$shark = new shark;
$shark->name = Input::get('name');
$shark->email = Input::get('email');
$shark->shark_level = Input::get('shark_level');
$shark->save();
// redirect
Session::flash('message', 'Successfully created shark!');
return Redirect::to('sharks');
}
}
...
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us