You aren't using Eloquent in that method, you are using query builder, it does not return Models.
Fix your index() in CardsController:
public function index()
{
$cards = Card::get();
return view('cards.index',compact('cards'));
}
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community