'Laravel 8 route model binding not return ant record?

I am using below code for route model binding but the binding variable does not return any value. MY ROUTE

Route::resource('offertypes', 'OfferTYpeController');

CONTROLLER CODE

    public function edit(OfferType $offerType)
    {
        dd($offerType);
        return view('admin.offer-types._form', compact('offerType'));
    }

BLADE FILE CODE

<td>
 <a href="{{ route('admin.offertypes.edit', $offerType->id) }}">{{ ucwords($offerType->title) }}</a>
</td>

RETURN VALUE my code returns this enter code here



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source