• ErrorException in PagesController.php line 477: Trying to get property 'date' of non-object В чем проблема?

    @mShpakov
    Проверки на нул сами себя не сделают
    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();
    if($latest){
    $last = Carbon::createFromTimestamp($latest->date)->toDateTimeString();
    if(count($lives) == 0){
    $c = 0;
    }else{
    $c = 1;
    }
    if(count($coming) == 0){
    $pages = 1;
    }else{
    $pages = round(count($coming)/10);
    }
    }
    Ответ написан
    Комментировать