This commit is contained in:
hackerESQ
2024-08-26 19:54:45 -05:00
parent 0497f4ab52
commit 8508f55cea
3 changed files with 19 additions and 5 deletions
@@ -2,9 +2,6 @@
namespace App\Http\Controllers;
use App\Models\Portfolio;
use App\Models\Transaction;
class TransactionController extends Controller
{
@@ -13,8 +10,7 @@ class TransactionController extends Controller
*/
public function index()
{
$user = request()->user();
return view('transaction.index', compact('user'));
return view('transaction.index');
}
}