@extends('landlord.layout.main') @section('content') @if($errors->has('name'))
{{ $errors->first('name') }}
@endif @if(session()->has('message'))
{{ session()->get('message') }}
@endif @if(session()->has('not_permitted'))
{{ session()->get('not_permitted') }}
@endif

Payment List

@foreach($lims_payment_all as $key => $payment) @endforeach
{{trans('file.date')}} {{trans('file.Client')}} {{trans('file.Amount')}} {{trans('file.Paid By')}}
{{$key}} {{date($general_setting->date_format, strtotime($payment->created_at->toDateString()))}} {{$payment->tenant_id}} {{$payment->amount}} {{$payment->paid_by}}
@endsection @push('scripts') @endpush