@php use App\Models\Customer; @endphp @php $customer = Customer::where('handphone', 'LIKE', '628%')->get(); @endphp @foreach ($customer as $data)
{{ $data->handphone }}
@php $newHandphone = preg_replace('/^62/', '0', $data->handphone); @endphpUpdated: {{ $newHandphone }}
@php $update = Customer::where('id_customer', $data->id_customer)->update(['handphone' => $newHandphone]); @endphp @endforeach