Can you use php code like this inside a blade @extends method? I don't think this code works please...
How do I do a conditional check of a value from an array to decide the layout? This is the error I g...
Illuminate \ Database \ QueryException SQLSTATE[42S22]: Column not found: 1054 Unknown column 'suppl...
Illuminate \ Database \ QueryException SQLSTATE[42S22]: Column not found: 1054 Unknown column 'id' i...
Eloquent will also assume that each table has a primary key column named id. So I change it like thi...
Download and install the debugbar for laravel. https://github.com/barryvdh/laravel-debugbar
What are the sql statements executed from your debugger? $buildings = Object::with('buildings.buil...
Can you post the raw sql query and the database?
It is saying there is no method called called permissions in the user object. Can you show us what i...
$results = DB::select( DB::raw("SELECT * FROM some_table WHERE some_col = '$someVariable'"...
The Laravel portal for problem solving, knowledge sharing and community building.