2016-12-11 13:08:30 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\API;
|
|
|
|
|
2021-10-10 18:05:51 +00:00
|
|
|
use App\Models\Song;
|
|
|
|
use Illuminate\Validation\Rule;
|
|
|
|
|
2016-12-11 13:08:30 +00:00
|
|
|
/**
|
2020-12-22 20:11:22 +00:00
|
|
|
* @property array<string> $songs
|
2016-12-11 13:08:30 +00:00
|
|
|
*/
|
2021-10-11 11:30:27 +00:00
|
|
|
class PlaylistSongUpdateRequest extends Request
|
2016-12-11 13:08:30 +00:00
|
|
|
{
|
2020-12-22 20:11:22 +00:00
|
|
|
/** @return array<mixed> */
|
2018-08-30 03:11:47 +00:00
|
|
|
public function rules(): array
|
2016-12-11 13:08:30 +00:00
|
|
|
{
|
|
|
|
return [
|
2019-08-29 19:49:16 +00:00
|
|
|
'songs' => 'present|array',
|
2021-10-10 18:05:51 +00:00
|
|
|
'songs.*' => [Rule::exists(Song::class, 'id')],
|
2016-12-11 13:08:30 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|