Example #1
0
 public function show($name)
 {
     $file_link = \FileLinkDriver::first(['name' => $name]);
     if (!$file_link) {
         \App::abort(404);
     }
     $file = \FileDriver::get($file_link->file_id);
     if (!$file) {
         \App::abort(404);
     }
     return \View::make('files.file.show', compact('file_link', 'file'));
 }