@extends('layouts.app') @section('content')
{{ __('Customers') }}
@Auth @if (session('status')) @endif @foreach($customers as $key=>$customer) @endforeach
No. Name Mobile Email Date Created Action
{{$key+1}} {{$customer->name}} {{$customer->mobile}} {{$customer->email}} {{$customer->created_at}}
@method('DELETE') @csrf
@else {{ __('You should log in!') }} @endauth
@endsection