@extends('layouts.app', ['title' => 'Customer All']) @section('content')
@foreach ($customers as $item) @endforeach
# Name Email Phone Status Assign Action
{{ $loop->iteration }} {{ $item->customer ? $item->customer->name : '' }} {{ $item->customer ? $item->customer->email : '' }} {{ $item->customer ? $item->customer->phone : '' }} @if ($item->customer ? $item->customer->status : '' == 'active') @elseif($item->customer ? $item->customer->status : '' == 'inactive') @endif Assign
@section('js') @endsection @endsection @push('delete')
@csrf @method('delete')
@endpush