@extends('inventory.layout') @section('title', 'Client') @section('content') @push('head') @endpush
{{($clients->currentpage()-1)*$clients->perpage()+1}} to {{$clients->currentpage()*$clients->perpage()}} of {{$clients->total()}} entries  Add Client
@foreach($clients as $client) @endforeach
{{ __('Client Name')}} {{ __('Client Code')}} {{ __('Email')}} {{ __('Mobile')}} {{ __('Status')}} {{ __('Action')}}
{{ isset($client->first_name) ? $client->first_name :'' }} {{ isset($client->client_code) ? $client->client_code :'' }} {{ isset($client->email) ? $client->email :'' }} {{ isset($client->mobile) ? $client->mobile :'' }}       {{----}}

@push('script') @endpush @endsection