23 خطوط
504 B
PHP
23 خطوط
504 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class StoreCallNoteRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'content' => 'required|string|max:5000',
|
|
'type' => 'nullable|string|in:general,call_summary,objection,commitment,internal',
|
|
'visibility' => 'nullable|string|in:private,team,organization',
|
|
];
|
|
}
|
|
}
|