@extends('admin.layouts.admin') @section('title','Customers') @section('page-title','Customers') @section('content')
| # | Name | Phone | Status | Joined | Actions | |
|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $customer->name }} | {{ $customer->phone }} | {{ $customer->email }} | @if($customer->is_active) Active @else Inactive @endif | {{ $customer->created_at->format('d M Y') }} | {{-- VIEW --}} {{-- EDIT --}} Edit {{-- ACTIVATE / DEACTIVATE --}} {{-- DELETE --}} |
| No customers found | ||||||