richard
/
cyca
Archived
1
0
Fork 0
This repository has been archived on 2024-05-04. You can view files and clone it, but cannot push or open issues or pull requests.
cyca/app/Http/Requests/Groups/InviteUserRequest.php

34 lines
613 B
PHP
Executable File

<?php
namespace App\Http\Requests\Groups;
use Illuminate\Foundation\Http\FormRequest;
class InviteUserRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return $this->user()->can('invite', $this->group);
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'email' => [
'required',
'email',
],
];
}
}