Files
investbrain/app/Http/Controllers/HoldingController.php
T

17 lines
221 B
PHP
Raw Normal View History

2024-08-26 19:54:45 -05:00
<?php
namespace App\Http\Controllers;
class HoldingController extends Controller
{
/**
* Display the specified resource.
*/
public function show()
{
return view('holding.index');
}
}