@extends('layouts.simple.master') @section('title', 'Customers List') @section('style') @endsection @section('breadcrumb-title')

Customers

@endsection @section('breadcrumb-items') @endsection @section('content')
@if(count($customers) > 0) @foreach($customers as $index=>$customer) @endforeach @endif
S.No Name Email Actions
{{++$index;}} {{$customer->name}} {{$customer->email}}
{!! $customers->links() !!}
@endsection @section('script') @endsection