Change some first Eloquent methods to firstOrFail

This commit is contained in:
Jonny Barnes 2017-08-09 22:15:45 +01:00
parent e3fff4b9a8
commit 64f541d30d
4 changed files with 6 additions and 5 deletions

View file

@ -35,7 +35,7 @@ class NotesController extends Controller
*/
public function show($urlId)
{
$note = Note::nb60($urlId)->with('webmentions')->first();
$note = Note::nb60($urlId)->with('webmentions')->firstOrFail();
return view('notes.show', compact('note'));
}