add transactions index

This commit is contained in:
hackerESQ
2024-08-26 19:49:43 -05:00
parent 57629ba737
commit 1017463ea7
9 changed files with 149 additions and 8 deletions
@@ -13,7 +13,8 @@ class TransactionController extends Controller
*/
public function index()
{
$user = request()->user();
return view('transaction.index');
return view('transaction.index', compact('user'));
}
}