@extends('Dashboard.layouts.master') @section('title','Team | List') @section('css') @endsection @section('content')
@if(count($customers) == 0) @endif @foreach ($customers as $key => $customer) @endforeach
No. Name Email Status Actions
No data Found
{{ ++$key }} {{ $customer->name }} {{ $customer->email }}
{{ $customer->status == 1 ? __('forms.enabled') : __('forms.disabled') }}
Action
@endsection @section('scripts') @endsection