Siopas Inventory PETI for ISTW Website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
4.2 KiB

1 year ago
<?php
use App\Models\m_asset;
use App\Models\asset_status;
use Illuminate\Support\Facades\Route;
11 months ago
use App\Http\Controllers\RoleController;
use App\Http\Controllers\M_userController;
use App\Http\Controllers\M_assetController;
use App\Http\Controllers\ProductController;
1 year ago
use App\Http\Controllers\ProfileController;
use SimpleSoftwareIO\QrCode\Facades\QrCode;
use App\Http\Controllers\PengadaanController;
1 year ago
use App\Http\Controllers\TransaksiController;
use App\Http\Controllers\WarehouseController;
1 year ago
use App\Http\Controllers\PeminjamanController;
use App\Http\Controllers\BarangMasukController;
use App\Http\Controllers\BarangKeluarController;
1 year ago
use App\Http\Controllers\PengembalianController;
use App\Http\Controllers\SettingPlatformController;
1 year ago
/*
|--------------------------------------------------------------------------
| 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('auth.login');
1 year ago
});
1 year ago
Route::middleware('auth')->group(function () {
Route::get('/profile', [ProfileController::class, 'edit'])->name('profile.edit');
Route::patch('/profile', [ProfileController::class, 'update'])->name('profile.update');
Route::delete('/profile', [ProfileController::class, 'destroy'])->name('profile.destroy');
1 year ago
Route::put('/profile/{id}', [ProfileController::class, 'updateprofile'])->name('profile.updateprofile');
1 year ago
Route::post('/profile-update', [ProfileController::class, 'updatePhoto'])->name('profile-update');
Route::get('/setting', [ProfileController::class, 'setting'])->name('profile.setting');
1 year ago
});
11 months ago
Route::prefix('dashboard')->name('dashboard.')->middleware(['auth'])->group(function () {
1 year ago
//Halaman dashboard
Route::middleware('auth')->get('', function () {
$reminder = asset_status::whereNull('enter_at')->count();
12 months ago
$jumlahAsset = m_asset::count();
$jumlahPeminjaman = asset_status::count();
$jumlahPengembalian = asset_status::whereNotNull('enter_at')->count();
return view('dashboard.index', compact('jumlahAsset', 'jumlahPeminjaman', 'jumlahPengembalian', 'reminder'));
1 year ago
});
1 year ago
11 months ago
//Halaman Role
Route::controller(RoleController::class)->group(function () {
Route::get('role', 'index')->name('role.index');
Route::post('role/store', 'store')->name('role.store');
Route::put('role/{id}', 'update')->name('role.update');
Route::get('role/delete/{id}', 'destroy')->name('role.destroy');
11 months ago
});
1 year ago
1 year ago
//Halaman Peminjaman
11 months ago
Route::controller(PeminjamanController::class)->group(function () {
Route::get('peminjaman', 'index')->name('peminjaman.index');
Route::post('peminjaman/store', 'store')->name('peminjaman.store');
Route::put('peminjaman/{id}', 'update')->name('peminjaman.update');
Route::delete('peminjaman/delete/{id}', 'destroy')->name('peminjaman.destroy');
});
});
1 year ago
11 months ago
Route::group(['prefix' => 'dashboard'], function () {
1 year ago
//Halaman Pengembalian
Route::middleware('auth')->resource('/pengembalian', PengembalianController::class);
1 year ago
1 year ago
//Halaman Pengadaan
Route::middleware('auth')->resource('/pengadaan', PengadaanController::class);
1 year ago
1 year ago
//Halaman Manajemen Asset
Route::middleware('auth')->resource('/asset', M_assetController::class);
Route::get('/hapusAsset/{id}', [M_assetController::class, 'destroy'])->name('hapusAsset.destroy');
12 months ago
Route::get('/assetcetak_pdf', [M_assetController::class, 'cetakpdf'])->name('assetcetakpdf.cetakpdf');
Route::get('/assetexport', [M_assetController::class, 'export'])->name('assetexport.export');
1 year ago
//Halaman Manajemen User
Route::middleware('auth')->resource('/user', M_userController::class);
Route::get('/hapusUser/{id}', [M_userController::class, 'destroy'])->name('hapusUser.destroy');
12 months ago
//Halaman Warehouse
Route::middleware('auth')->resource('/warehouse', WarehouseController::class);
Route::get('/hapuswarehouse/{id}', [WarehouseController::class, 'destroy'])->name('hapuswarehouse.destroy');
1 year ago
});
1 year ago
require __DIR__ . '/auth.php';