Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eaponiente/1f6c657d0fd2b451dbb81913cb84272c to your computer and use it in GitHub Desktop.
Save eaponiente/1f6c657d0fd2b451dbb81913cb84272c to your computer and use it in GitHub Desktop.
Form Request for edit validation
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Auth;
use Illuminate\Validation\Rule;
class CompaniesRequest 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()
{
switch ($this->method()) {
case 'PUT':
return [
'name' => [
'required',
Rule::unique('companies')->ignore($this->segment(2))
]
];
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment