dashboard-admin/routes/web.php
2023-08-15 09:59:36 +07:00

26 lines
799 B
PHP

<?php
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider and all of them will
| be assigned to the "web" middleware group. Make something great!
|
*/
Route::get('/', function () {
return view('index');
});
Route::get('/list_transaction', function () {
return view('transaction/List_Transaction');
});
Route::get('/history_transaction', function () {
return view('transaction/History_Transaction');
});
Route::get('/Detail_History', function () {
return view('transaction/Detail_History_Transaction');});