koel/app/Http/Requests/API/SongUpdateRequest.php

23 lines
465 B
PHP
Raw Normal View History

2016-03-05 09:01:12 +00:00
<?php
namespace App\Http\Requests\API;
2024-01-10 20:04:37 +00:00
use App\Models\Song;
use Illuminate\Validation\Rule;
2016-08-03 10:42:11 +00:00
/**
2024-01-10 20:04:37 +00:00
* @property-read array<string> $songs
* @property-read array<mixed> $data
2016-08-03 10:42:11 +00:00
*/
2016-03-05 09:01:12 +00:00
class SongUpdateRequest extends Request
{
/** @inheritdoc */
2018-08-30 03:11:47 +00:00
public function rules(): array
2016-03-05 09:01:12 +00:00
{
return [
'data' => 'required|array',
'songs' => ['required', 'array', Rule::exists(Song::class, 'id')->whereNull('podcast_id')],
2016-03-05 09:01:12 +00:00
];
}
}