2024-08-15 21:35:43 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
|
|
use App\Models\Portfolio;
|
|
|
|
|
use App\Models\Transaction;
|
|
|
|
|
|
|
|
|
|
class TransactionController extends Controller
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Display the specified resource.
|
|
|
|
|
*/
|
|
|
|
|
public function index()
|
|
|
|
|
{
|
2024-08-26 19:49:43 -05:00
|
|
|
$user = request()->user();
|
2024-08-15 21:35:43 -05:00
|
|
|
|
2024-08-26 19:49:43 -05:00
|
|
|
return view('transaction.index', compact('user'));
|
2024-08-15 21:35:43 -05:00
|
|
|
}
|
|
|
|
|
}
|