@extends('backend.master') @section('title') {{ @$data['title'] }} @endsection @section('content')
@include('backend.partials.user_profile-menu')
@include('backend.partials.profile_nav')
@include('backend.partials.user_profile-menu')
@include('backend.partials.profile_nav')

Transaction History

@foreach ($transactions as $transaction) @endforeach
{{ _trans('landlord.Name') }} {{ _trans('landlord.Attachment') }} {{ _trans('landlord.Date') }} {{ _trans('landlord.Property Name') }} {{ _trans('landlord.Amount') }} {{ _trans('landlord.Invoice') }}
{{ @$transaction->tenant->user->name }} {{ @$transaction->attachment->path }} {{ @$transaction->date }} {{ @$transaction->property->name }} ${{ @$transaction->amount }}

{{ _trans('landlord.Add Transaction') }}

@csrf
@error('status')
{{ $message }}
@enderror
@error('property_name')
{{ $message }}
@enderror
@error('type')
{{ $message }}
@enderror
@error('payment_method')
{{ $message }}
@enderror
@endsection @push('script') @include('backend.partials.delete-ajax') @endpush