Add event addon purchase success page with confetti
This commit is contained in:
22
app/Http/Requests/Tenant/EventAddonPurchaseLookupRequest.php
Normal file
22
app/Http/Requests/Tenant/EventAddonPurchaseLookupRequest.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Requests\Tenant;
|
||||
|
||||
use Illuminate\Foundation\Http\FormRequest;
|
||||
|
||||
class EventAddonPurchaseLookupRequest extends FormRequest
|
||||
{
|
||||
public function authorize(): bool
|
||||
{
|
||||
return true;
|
||||
}
|
||||
|
||||
public function rules(): array
|
||||
{
|
||||
return [
|
||||
'addon_intent' => ['nullable', 'string', 'max:191'],
|
||||
'checkout_id' => ['nullable', 'string', 'max:191'],
|
||||
'addon_key' => ['nullable', 'string', 'max:191'],
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user