@extends('layouts.app') @section('content')
Customer List Add New
{{-- --}} @if(count($datas) > 0) @php $i = 1; @endphp @foreach($datas as $data) {{-- --}} @endforeach @endif {{-- --}}
SL Name Phone Email Address City CountryStatusAction
{{ $i++ }} {{ $data->name??'' }} {{ $data->phone??'' }} {{ $data->email??'' }} {{ $data->address??'' }} {{ $data->city_name??'' }} {{ $data->country_name??'' }}{{ $data->status == 1?'Active':'Pending' }} Edit
@csrf @method('DELETE')
SL Name Phone Email Address City CountryStatusAction
@endsection