
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.
Sass or SCSS @mixin vs @extends vs Placeholder (%)
Relationship Table Data With Route Model Binding In Laravel
Laravel 7.x Multiple Database Connections, Migrations, Relationships & Querying
Free Live Chat Integration Using TAWK.IO
Getting Started With AMP (Accelerated Mobile Pages)
Testing Laravel Emails With MailHog
Plain PHP Resumable Large File Uploads In Chunks Using FlowJs
Why namespace And use Keywords Used In PHP
PHP extension ext-intl * is missing
Debugging Laravel Queue Email Issues
SummerNote WYSIWYG Text Editor Save Images To Public Path In PHP Laravel