mirror of
https://github.com/koel/koel
synced 2024-12-19 09:03:07 +00:00
22 lines
465 B
PHP
22 lines
465 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
use App\Models\Song;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
/**
|
|
* @property-read array<string> $songs
|
|
* @property-read array<mixed> $data
|
|
*/
|
|
class SongUpdateRequest extends Request
|
|
{
|
|
/** @inheritdoc */
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'data' => 'required|array',
|
|
'songs' => ['required', 'array', Rule::exists(Song::class, 'id')->whereNull('podcast_id')],
|
|
];
|
|
}
|
|
}
|