WARNING » Attempt to read property "id" on false

     /var/www/vhosts/dijitalbilet.tr/httpdocs/Projects/Frontend/Controllers/Category.php
        

10.      * Loads opening page.
11.      * Location: Views/Home/main.wizard.php
12.      */
13.     public function main($slug)
14.     {  
15.         # Sets masterpage title.
16.         Masterpage::title('Anasayfa - Dijital Bilet');
17. 
18.         $category = DB::where('slug', $slug)->get('categories');
19. 
$events = DB::orderBy('start_date', 'ASC')->where('category_id',$category->row()->id)->events(); 20. View::events($events); 21. View::category($category); 22. 23. } 24. 25. /** 26. * Home::s404 27. * 28. * Loads show 404 page. 29. * Location: Views/Home/s404.wizard.php