@extends('layouts.adminapp') @section('content') {{-- Salary Package --}}
{{$Kuri->title}}
@csrf
{{__('lng.Payment')}}
@error('date')
{{ $message }}
@enderror
{{ __('lng.KuriPayments') }}
@php $si=0; @endphp @foreach ($KuriPayments as $KuriPayment) @php $month = date("d-m-Y",strtotime($KuriPayment->date));@endphp @endforeach
{{ __('lng.SiNo') }} {{ __('lng.Date') }} {{ __('lng.Amount') }} {{ __('lng.Head') }} {{ __('lng.Narration') }} {{ __('lng.Action') }}
{{ ++$si }} {{ $month }} @currency( $KuriPayment->amount ) {{ $KuriPayment->Head->title ?? '' }} {{ $KuriPayment->narration }}
@csrf @method('delete')

{{ $KuriPayments->count() }} {{ __('lng.Items') }}

@endsection