22 lines
418 B
PHP
22 lines
418 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class DeviceTokenRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'expo_push_token' => ['required', 'string', 'max:255'],
|
|
'platform' => ['nullable', 'string', 'in:ios,android,web'],
|
|
];
|
|
}
|
|
}
|