@extends('layouts.admin.index') @section('content')
{{ trans('cruds.customer') }} {{ trans('cruds.list') }}
{{-- --}} @foreach($customers as $key => $customer) {{-- --}} @endforeach
{{ trans('cruds.code') }} {{ trans('cruds.firstname') }} {{ trans('cruds.lastname') }} {{ trans('cruds.mobile_no') }} {{ trans('cruds.profile_photo') }}{{trans('cruds.add_joint_applicant')}}{{trans('cruds.add_joint_applicant')}} / {{ trans('cruds.actions') }}
{{ $customer->customer_code ?? '' }} {{ $customer->firstname ?? '' }} {{ $customer->lastname ?? '' }} {{ $customer->mobile_no ?? '' }} {!! uploadedFile($customer,$customer->profile_photo,'index') !!} @if(show()) @endif @if(edit()) @endif @if(delete())
@endif
{{-- Pagination --}}
{!! $customers->links() !!}
@endsection @section('scripts') @parent