豊臣 梨本, [25.10.21 13:23]
<div class="alert-success">
<a href='/edit/{{$post->id}}'>edit {{$post->title}}</a>
<h2>{{$post->title}}</h2>
<br>
豊臣 梨本, [25.10.21 13:23]
Route::get("edit/{id}",function ($id){
$post = DB::table('articles')->where('id',$id)->get();
return view('edit',['post'=>$post]);
});
豊臣 梨本, [25.10.21 13:23]
Exception
Property [title] does not exist on this collection instance. (View: C:\data\comp\resources\views\edit.blade.php)
http://127.0.0.1:8000/edit/22