Trying to delete a record from database using laravel

30 views Asked by At

enter image description here

Facing and Error Property [customer_id] does not exist on this collection instance. enter image description here

But the column exsits in database table and $customer in and object instance of table enter image description here

1

There are 1 answers

0
IGP On

You're doing @foreach ($customer as $value) so it should be {{ $value->customer_id }} in your url().

<a href="{{ url('customer/delete/'.$value->customer_id) }}">