= student::where('created_at', null)->name->get();
has this error : Undefined property: Illuminate\Database\Eloquent\Builder::$name
->get('name') Try this and tell the result
use ->select('column')->get() or get('column')
name is attribute for own model not a Builder property or method
Обсуждают сегодня