habit-statistics/app/Http/Requests/HabitsRequest.php

22 lines
334 B
PHP
Raw Permalink Normal View History

2023-05-21 12:11:59 +02:00
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class HabitsRequest extends FormRequest
{
public function rules(): array
{
return [
'name' => ['required', 'string'],
''
2023-05-21 12:11:59 +02:00
];
}
public function authorize(): bool
{
return true;
}
}