Level 73
You are trying to use Collection methods on a Eloquent Builder instance.
so this:
$lastbill = Bill::where('project_id', $project->id)->where('bill_type', 'p')
->get() // this should give you collection
->sortByDesc('created_at')->first();
same here:
$lastbill = Bill::where('project_id', $project->id)->where('bill_type', 'p')->get()->last();
1 like