mandant-crm/backend/app/Modules/History/Requests/UpdateHistoryEntryRequest.php

18 lines
339 B
PHP
Raw Normal View History

<?php
namespace App\Modules\History\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UpdateHistoryEntryRequest extends FormRequest
{
public function authorize(): bool { return true; }
public function rules(): array
{
return [
'body' => ['required', 'string', 'max:65535'],
];
}
}