В методе контроллера я использую следующее:
Код: Выделить всё
// Getting all files from the storage:
$files = Storage::disk('articles')->allFiles();
$articles = [];
foreach ($files as $file) {
$storageFile = Storage::disk('posts')->get($file);
array_push($articles, $storageFile);
}
return view('articles', compact('files', 'articles'));
Код: Выделить всё
$posts = Post::orderBy('created_at', 'desc')
->paginate(1);
Спасибо!
Подробнее здесь: https://stackoverflow.com/questions/700 ... -laravel-8