Facing and Error Property [customer_id] does not exist on this collection instance.
But the column exsits in database table and $customer in and object instance of table
You're doing @foreach ($customer as $value) so it should be {{ $value->customer_id }} in your url().
@foreach ($customer as $value)
{{ $value->customer_id }}
url()
<a href="{{ url('customer/delete/'.$value->customer_id) }}">
You're doing
@foreach ($customer as $value)so it should be{{ $value->customer_id }}in yoururl().