@extends('backend.layouts.app') @section('backend_title', 'Admin Brand List') @section('backend_content')
All Advance Details

{{-- A lightweight, extendable, dependency-free javascript HTML table plugin. --}}

@forelse ($AdvanceList as $index=> $item) @empty @endforelse
Sl No. Employee Name Employee ID Adv. slip Number Transaction Date Payment Type Transaction Type Advance Amount Action
{{ $index + 1 }}

{{ $item->employees?->name}}

{{ $item->employees?->employee_id}}

{{ $item->slip_num}}

{{ $item->payment_date ? \Carbon\Carbon::parse($item->payment_date)->format('d-M-Y') : '' }}

{{ $item->payment_type == 'cp' ? 'Advance pay' : ($item->payment_type == 'cr' ? 'Advance Receive' : ($item->payment_type == 'crfs' ? 'Adv. Received From Salary' : ''))}}

{{ $item->transaction_type == 'cash' ? 'Cash' : 'Banck'}}

{{ $item->amount}}

@can('edit division') @endcan @can('delete division') @endcan
Data Not Found!!
Name Status Action
@endsection