@extends('layouts/pos_layout') @section('title', '| Guarantor List') @section('content') @include('successMsg')

GUARANTOR LIST

{{ csrf_field() }} @if(!empty($guarantors)) @foreach($guarantors as $guarantor) @endforeach @endif
SL# Customer Id Customer Name Guarantor Name Father Name Spouse Name Email Phone Relation National Id Action
{{++$no}} {{ $guarantor->customer->customer_id_no ?? '' }} {{ $guarantor->customer->name ?? '' }} {{ $guarantor->name ?? ''}} {{ ($guarantor->father_name) ? $guarantor->father_name : 'N/A' }} {{ ($guarantor->spouse_name) ? $guarantor->spouse_name : 'N/A' }} {{ ($guarantor->email) ? $guarantor->email : 'N/A' }} {{ ($guarantor->phone) ? $guarantor->phone : 'N/A' }} {{ ($guarantor->relation) ? $guarantor->relation : 'N/A' }} {{ ($guarantor->national_id) ? $guarantor->national_id : 'N/A' }}    
@include('pos/tools/guarantor/guarantorDetails') @include('dataTableScript') @endsection