Answers for "a table have another table id and that table have another table id finally third table have name how to join this in laravel"

PHP
3

join in laravel eloquent

$customer = DB::table('customers')
                ->join('shops', 'customers.shop_id', '=', 'shops.shop_id')
                ->where('customer_contact', $contact_no)
                ->get();
Posted by: Guest on October-06-2020

Code answers related to "a table have another table id and that table have another table id finally third table have name how to join this in laravel"

Browse Popular Code Answers by Language