Выдает такую ошибку:
ErrorException in PagesController.php line 477:
Trying to get property of non-object
at HandleExceptions->handleError('8', 'Trying to get property of non-object', 'C:\laragon\www\astrixbets\app\Http\Controllers\PagesController.php', '477', array('history' => object(Collection), 'lives' => object(Collection), 'coming' => object(Collection), 'latest' => null)) in PagesController.php line 477
at PagesController->index()
public function index(){
$history = History::where('id','>',0)->orderBy('id','desc')->limit(3)->get();
$lives = Tournaments::where('live',1)->where('status',1)->get();
$coming = Tournaments::where('live',0)->where('status',0)
->where('team1','!=','no team1')
->where('team2','!=','no team2')
->where('date','>=',Carbon::now()->timestamp)
->orderBy('date','ASC')
->take(10)
->get();
$latest = Tournaments::where('live',0)->where('status',0)->where('date','>=',Carbon::now()->timestamp)->orderBy('date','ASC')->first();
$last = Carbon::createFromTimestamp($latest->date)->toDateTimeString();//477 stroka
if(count($lives) == 0){
$c = 0;
}else{
$c = 1;
}
if(count($coming) == 0){
$pages = 1;
}else{
$pages = round(count($coming)/10);
}