@extends('layouts/contentLayoutMaster') @section('title', 'Management Customers') @section('vendor-style') {{-- Page Css files --}} @endsection @section('page-style') {{-- Page Css files --}} @endsection @section('content')
@include('content.partial.form-message')

Customers List

input("search")) }}"/>
@php $types = ['Domestic', 'Foreign']; $options = request()->input("type") ? request()->input("type") : ['Domestic', 'Foreign']; if(!empty($types)){ @endphp @php } @endphp
Reset
@can('Business - Customers - Add') Add New Customer @endcan

@if($customers->total()) Records {{ ( $customers->currentPage() - 1 ) * $customers->perPage() + 1 }} to {{ ( $customers->currentPage() - 1 ) * $customers->perPage() + $customers->count() }} from {{ $customers->total() }} Records @else No Record @endif

@foreach( $customers as $customer ) @endforeach
ID Logo Type Name Contact Person Phone Email Address Action
{{ $customer->id }} logo {{ $customer->type }} {{ $customer->name }} {{ $customer->contact_person }} {{ $customer->phone }} {{ $customer->email }} {{ $customer->address }}
{{ $customers->appends($_REQUEST)->fragment('top-list')->links('vendor.pagination.bootstrap-5') }}
@endsection @section('vendor-script') {{-- Vendor js files --}} @endsection @section('page-script') @endsection