Try wrapping your SQL in DB::Raw(): $asins = DB::select(DB::raw('SELECT `AmazonASIN`.`sku` , `Amazo...
Are you wanting to write a query that gets all images from a table and the first image as well? Woul...
You'd have this problem writing raw SQL - you have to specify from which table the 'active' column i...
$p = Parent::find(1); $child = new Child([ 'key' => 'value', ]); $p->child()->save($child...
You have no namespaces setup in your Role.php Per your PSR-0 structure, and as you said you have a &...
The Laravel portal for problem solving, knowledge sharing and community building.