Hoang Nhat

Results 2 issues of Hoang Nhat

![Screenshot from 2024-01-17 11-40-22](https://github.com/xiaolai/everyone-can-use-english/assets/25658880/4ea57024-7006-42e2-80aa-008d98d8664d) I got the error when I run command `yarn start:enjoy`. How to fix it?

This is my code. ``` Route::get('/video/secret/{key}', function ($key) { return Storage::disk('secrets')->download($key); })->name('video.key'); Route::get('/video/{playlist}', function ($playlist) { return FFMpeg::dynamicHLSPlaylist() ->fromDisk('public') ->open($playlist) ->setKeyUrlResolver(function ($key) { return route('video.key', ['key' => $key]); }) ->setMediaUrlResolver(function...