smartEnergyView-backend/app/Http/Requests/StoreNotificationRequest.php
2022-06-13 12:37:24 -03:00

36 lines
695 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class StoreNotificationRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'title' => 'required|string',
'body' => 'required',
'users.*.user_i' => [
'integer',
'exists:users,user_id',
],
];
}
}