27 lines
577 B
PHP
27 lines
577 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace App\Http\Requests;
|
||
|
|
|
||
|
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
|
|
||
|
|
class StorePlatformChannelRequest extends FormRequest
|
||
|
|
{
|
||
|
|
public function authorize(): bool
|
||
|
|
{
|
||
|
|
return true;
|
||
|
|
}
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return array<string, string>
|
||
|
|
*/
|
||
|
|
public function rules(): array
|
||
|
|
{
|
||
|
|
return [
|
||
|
|
'platform_instance_id' => 'required|exists:platform_instances,id',
|
||
|
|
'name' => 'required|string|max:255',
|
||
|
|
'language_id' => 'nullable|exists:languages,id',
|
||
|
|
'description' => 'nullable|string',
|
||
|
|
];
|
||
|
|
}
|
||
|
|
}
|