1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Models\Detail_transaksi;
use App\Models\Tempat;
use Illuminate\Support\Facades\Auth;
use App\Models\Cair;
use Brian2694\Toastr\Facades\Toastr;
class DanaKController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
//
$tempat = Tempat::where('user_id', Auth::user()->petugas_id)->where('status', '1')->first();
$id_tempat = $tempat->id;
$data = Detail_transaksi::where('kedatangan', '1')->orderby('id', 'desc')->where('tempat_id', $id_tempat)->take(5)->get();
$data4 = Detail_transaksi::where('kedatangan', '1')->orderby('id', 'desc')->where('tempat_id', $id_tempat)->get();
$cair = Cair::where('tempat_id', $id_tempat)->orderby('id', 'desc')->get();
$cair2 = Cair::where('tempat_id', $id_tempat)->where('status', 1)->get();
$cair3 = Cair::where('tempat_id', $id_tempat)->where('status', 0)->get();
$grandtotal = 0;
$grandcair = 0;
$grandcair2 = 0;
foreach ($data4 as $dt => $detail) {
$uang = $detail->harga;
$grandtotal += $uang;
}
foreach ($cair2 as $dt => $cair2) {
$uang = $cair2->jumlah;
$grandcair += $uang;
}
foreach ($cair3 as $dt => $cair3) {
$uang = $cair3->jumlah;
$grandcair2 += $uang;
}
//Dana Masuk
$duit = $grandtotal;
// $tempat->dana = $duit;
// $tempat->save();
//Dana Keluar
$duit2 = $grandcair;
//Dana menunggu
$duit3 = $grandcair2;
//Dana Tempat
$uangutama = $tempat->dana;
// dd($grandcair);
return view('kuliner.dana.index', compact('data', 'duit', 'id_tempat', 'cair', 'uangutama', 'duit2', 'duit3'));
}
public function kuliner_cair(Request $request)
{
//
$tempat = Tempat::where('user_id', Auth::user()->petugas_id)->where('status', '1')->first();
$id_tempat = $tempat->id;
$data = $request->all();
Cair::create([
'user_id' => $request->user_id,
'tempat_id' => $request->tempat_id,
'jumlah' => (int) preg_replace('/\D/', '', $request->jumlah),
'status' => 0,
]);
//kurang di dana
// $tempat->dana -= $request->jumlah;
// $a = $tempat->dana;
// // $tempat->dana = $duit;
// $tempat['dana'] = $a;
// $tempat->update([
// 'dana' => $a,
// ]);
return redirect("/kuliner/danak");
}
/**
* Show the form for creating a new resource.
*
* @return \Illuminate\Http\Response
*/
public function create()
{
//
}
/**
* Store a newly created resource in storage.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function store(Request $request)
{
//
}
/**
* Display the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function show($id)
{
//
}
/**
* Show the form for editing the specified resource.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function edit($id)
{
//
}
/**
* Update the specified resource in storage.
*
* @param \Illuminate\Http\Request $request
* @param int $id
* @return \Illuminate\Http\Response
*/
public function update(Request $request, $id)
{
//
}
/**
* Remove the specified resource from storage.
*
* @param int $id
* @return \Illuminate\Http\Response
*/
public function destroy($id)
{
//
}
}