52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Purchase\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class StartCheckoutRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return $this->user() !== null;
|
|
}
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'cart_id' => [
|
|
'required_without:direct_item',
|
|
Rule::prohibitedIf(fn (): bool => $this->has('direct_item')),
|
|
'integer',
|
|
'exists:carritos,id',
|
|
],
|
|
'direct_item' => [
|
|
'required_without:cart_id',
|
|
Rule::prohibitedIf(fn (): bool => $this->has('cart_id')),
|
|
'array',
|
|
],
|
|
'direct_item.catalog_item_id' => [
|
|
'required_with:direct_item',
|
|
'integer',
|
|
],
|
|
'direct_item.variant_id' => [
|
|
'nullable',
|
|
'integer',
|
|
],
|
|
'direct_item.cantidad' => [
|
|
'required_with:direct_item',
|
|
'integer',
|
|
'min:1',
|
|
],
|
|
'dni' => ['prohibited'],
|
|
'telefono' => ['prohibited'],
|
|
'nombre_apellido' => ['prohibited'],
|
|
'email' => ['prohibited'],
|
|
];
|
|
}
|
|
}
|