@extends('layouts.admin') @section('content')
{{-- Un Posted --}} @if ($unPosted)
@lang('student.filter by')

Un Posted List

{{-- Export btn --}} @if (count($unPosted) > 0)
@endif
@php $count=0 @endphp @foreach ($unPosted as $item) {{-- Cancel Calc --}} {{-- Post --}} @endforeach
Id Total expenses from to details
{{++$count}} {{$item->total_expenses}} EGP {{$item->from}} {{$item->to}} View Details
{{-- Cancel calculation --}} Cancel
@csrf
@endif {{-- posted --}} @if ($posted)
@lang('student.filter by')

Posted List

@if (count($posted) > 0)
@endif
@php $count=0 @endphp @foreach ($posted as $item) @endforeach
Id amount from to details
{{++$count}} {{$item->total_expenses}} EGP {{$item->from}} {{$item->to}} View Details @if ($committed->count() > 0) Already Committed @else @endif
@endif
@endsection @section('admin-js') {{-- Cancel Calc --}} {{-- Post --}} {{-- Cancel Post --}} @endsection