@extends('admin.layouts.app') @section('title', 'Cash') @push('styles') @include('datatable.css.data_table_css') @endpush @section('container')

Cash

@if (session('success'))
@endif @if (session('error'))
@endif
{{--
@if ($errors->any())
@endif
--}}
@csrf
@error('name')

{{ $message }}

@enderror

Withdraw Information

@foreach($withdraws as $withdraw) @endforeach
Date Amount Note
{{ date('d-m-Y',strtotime($withdraw->date)) }} {{ number_format($withdraw->amount,2) }} {{ $withdraw->note }}
{{-- {{ $withdraws->links() }}--}}

Investment Information

@foreach($investments as $investment) @endforeach
Date Amount Note
{{ date('d-m-Y',strtotime($investment->date)) }} {{ number_format($investment->amount,2) }} {{ $investment->note }}
{{-- {{ $investments->links() }}--}}
{{-- --}}
@endsection @push('scripts') @include('datatable.js.data_table_js') @endpush