@extends('admin.main') @section('main')
Reset
@foreach ($customers as $customer) @endforeach
ID Name Email Created At Options
#{{$customer->id}} {{$customer->customer_name}} {{$customer->email}} {{$customer->created_at}} View
@if ($customers->hasPages())
  • @for ($page = 1; $page <= $customers->lastPage(); $page++)
  • {{ $page }}
  • @endfor
@endif
Showing {{ $customers->firstItem() }} to {{ $customers->lastItem() }} of {{ $customers->total() }} results
@endsection @section('footer') @endsection @push('css') @endpush