
Good content takes time and effort to come up with.
Please consider supporting us by just disabling your AD BLOCKER and reloading this page again.
Many times you might want to use this wonderful thing called Route Model Binding in Laravel but back off because you might need its related table data too. Yup! I too had come across this situation.
Example - You want to show Customer details and CustomerAddress details so you would have done something like the following
public function show($customer)
{
$customer = Customer::with('customerAddress')->where('id', $customer)->first();
return view('customer.show', [
'customer' => $customer
]);
}
But let me explain 2 simple approaches to achieve it.
public function show(Customer $customer)
{
$customerAddress = CustomerAddress::where('id', $customer)->get();
return view('customer.show', [
'customer' => $customer,
'customerAddress' => $customerAddress
]);
}
Now lets see the simple way
load
)public function show(Customer $customer)
{
/** Super Awesome Right? */
$customer->load(['customerAddress']);
return view('customer.show', [
'customer' => $customer
]);
}
Yup the following is the super cool line.
$customer->load(['customerAddress']);
Make sure to use this wisely as it will load all the related table every time you query.
class Customer extends Model
{
use SoftDeletes;
protected $with = ['customerAddress'];
}
Hope the article was helpful. Kindly share it with your friends.
Lazy Load Images In Chrome With This Simple Trick
Generate Fake Data In PHP With Faker
Unable to prepare route [{fallbackPlaceholder}] for serialization. Uses Closure In Laravel
Install Packages Parallel For Faster Development In Composer
Increase Session Timeout In Laravel
Getting Started With AMP (Accelerated Mobile Pages)
GitHub Login With PHP Laravel Socialite
Why And How To Use PHP PDO With CRUD Examples
Why You Should Run Cronjobs In Laravel?
Install Apache Web Server On Ubuntu 20.04 / Linux & Manage It