2022-11-05 07:09:11 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2022-11-05 07:09:11 +01:00
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Invoice;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
|
|
|
|
class BulkInvoiceRequest extends Request
|
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2022-11-05 07:09:11 +01:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'action' => 'required|string',
|
2023-07-10 23:34:57 +02:00
|
|
|
'ids' => 'required|array',
|
2023-10-06 12:07:31 +02:00
|
|
|
'email_type' => 'sometimes|in:reminder1,reminder2,reminder3,reminder_endless,custom1,custom2,custom3,invoice,quote,credit,payment,payment_partial,statement,purchase_order',
|
|
|
|
'template' => 'sometimes|string',
|
|
|
|
'template_id' => 'sometimes|string',
|
2024-01-13 08:04:03 +01:00
|
|
|
'send_email' => 'sometimes|bool',
|
|
|
|
'subscriptin_id' => 'sometimes|string',
|
2022-11-05 07:09:11 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|