Skip to content

Instantly share code, notes, and snippets.

@rizkhal
Last active February 22, 2020 06:39
Show Gist options
  • Save rizkhal/7fb0c38067462337d1a721e72f7cdf99 to your computer and use it in GitHub Desktop.
Save rizkhal/7fb0c38067462337d1a721e72f7cdf99 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Support\Str;
use Illuminate\Foundation\Http\FormRequest;
class PostRequestValidate 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|min:3',
'body' => 'required|min:3'
];
}
public function data()
{
return [
'title' => $this->title,
'slug' => Str::slug($this->title, '-').'-'.Str::random(10),
'body' => $this->body,
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment