Skip to content

Instantly share code, notes, and snippets.

@sehmbimanvir
Created March 21, 2019 11:53
Show Gist options
  • Save sehmbimanvir/3b7e96047eb26dbb4a389b943a869af2 to your computer and use it in GitHub Desktop.
Save sehmbimanvir/3b7e96047eb26dbb4a389b943a869af2 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class StoreImage extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'title' => 'required|max:250',
'file' => 'required|image|max:2000'
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment