16 lines
229 B
PHP
16 lines
229 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
class TransactionController extends Controller
|
|
{
|
|
/**
|
|
* Display the specified resource.
|
|
*/
|
|
public function index()
|
|
{
|
|
|
|
return view('transaction.index');
|
|
}
|
|
}
|