Attempt to read property "ticket_title" on bool
I have this problem when I want to open specific page by id. now I am trying to shown title on my page with specific id, which have post in db, but that error stopped me. there are my code. route Route::get(‘/tickets/{id}’, [TicketsController::class, ‘show’])->name(‘tickets.show’); controller public function show($id) { $tickets = Tickets::with(‘companies’)->get(); $ticketscomp = Companies::with(‘tickets’)->get();… Read More Attempt to read property "ticket_title" on bool