Files

17 lines
230 B
PHP
Raw Permalink Normal View History

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