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...
I needed to override the save method. Problem solved! Note if you have insert and update functions t...
Thank you ever so much TerrePorter!!! It works!!! $nerd = User::GetByTestID($supplierid)->first(...
$results = DB::select('select * COMPLICATED QUERY = ?');
How do I override the find method in the show function? static function show($supplierid) { // ge...
This is the solution $results = DB::select('select * COMPLICATED QUERY = ?'); http://laravel.io/fo...
The Laravel portal for problem solving, knowledge sharing and community building.