@extends('master.app') @section('title', 'customer') @section('pageCSS') @endsection @section('body')

Customers

@can('customer_reporting') Report @endcan @include('general.filter-button') Add
@include('sale.customers.filter-form')
@foreach ($customers as $row) @endforeach
# Name Phone Address Type Actions
{{ $loop->iteration }} {{ $row->name }} {{ $row->phone }} {{ $row->address }} @if ($row->type_id == 1) {{ 'C' }} @else {{ 'S' }} @endif
{{ $customers->links('pagination::bootstrap-4') }}
@include('sale.customers.filter-modal') @endsection @section('pageJs') @endsection