mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-07 13:41:23 +00:00
44 lines
834 B
PHP
44 lines
834 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class SendInvoiceRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*/
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'body' => [
|
|
'required',
|
|
],
|
|
'subject' => [
|
|
'required',
|
|
],
|
|
'from' => [
|
|
'required',
|
|
],
|
|
'to' => [
|
|
'required',
|
|
],
|
|
'cc' => [
|
|
'nullable',
|
|
],
|
|
'bcc' => [
|
|
'nullable',
|
|
],
|
|
];
|
|
}
|
|
}
|