The code I have in the function is the following:
DB::table('projects')
->where('order', DB::raw("(select 'order' from projects)"))
->order + 1;
The error that shows me is the following:
Undefined property: Illuminate \ Database \ Query \ Builder :: $ order
How can I correct it?