@extends('layouts.admin.e-commerce.app') @section('title', 'Customer List') @push('css') @endpush @section('content') Customer List Home Product List Customer List Add Customer SL Name Username Email Phone Status Action @foreach ($customers as $key => $data) {{$key + 1}} {{$data->name}} {{$data->username}} {{$data->email}} {{$data->phone}} @if ($data->status) Active @else Disable @endif @if ($data->status) @else @endif @csrf @method('DELETE') @endforeach @endsection @push('js') @endpush