@extends('layouts.app') @section('content')
@if (Session::get('Restore'))
Restore!
{{Session::get('Restore')}}
@endif @if (Session::get('RestoreAll'))
Restore All!
{{Session::get('RestoreAll')}}
@endif @if (Session::get('PermanentDelete'))
Permanent Delete!
{{Session::get('PermanentDelete')}}
@endif @if (Session::get('PermanentAllDelete'))
Permanent All Delete!
{{Session::get('PermanentAllDelete')}}
@endif
@foreach ($TrasedBalances as $TrashBalance) @endforeach
Acount ID Date OpeningBalance ClosingBalance Status Action
{{$TrashBalance->AcountID}} {{$TrashBalance->Date}} {{$TrashBalance->OpeningBalance}} {{$TrashBalance->ClosingBalance}} {{$TrashBalance->Status}}
@endsection