@extends('admin.layouts.app')
@section('title', 'Cash')
@push('styles')
@include('datatable.css.data_table_css')
@endpush
@section('container')
@if (session('success'))
@endif
@if (session('error'))
@endif
{{--
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
--}}
Withdraw Information
| Date |
Amount |
Note |
@foreach($withdraws as $withdraw)
| {{ date('d-m-Y',strtotime($withdraw->date)) }} |
{{ number_format($withdraw->amount,2) }} |
{{ $withdraw->note }} |
@endforeach
{{-- {{ $withdraws->links() }}--}}
Investment Information
| Date |
Amount |
Note |
@foreach($investments as $investment)
| {{ date('d-m-Y',strtotime($investment->date)) }} |
{{ number_format($investment->amount,2) }} |
{{ $investment->note }} |
@endforeach
{{-- {{ $investments->links() }}--}}
{{-- --}}
@endsection
@push('scripts')
@include('datatable.js.data_table_js')
@endpush