mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
e3e0d57f56
* Add IDE Helper files * Cleanup imports - Alphabetises imports - Removes unused imports * Add Platform requirements * Move filling asset into block where asset exists * Remove duplicate array keys
53 lines
991 B
PHP
53 lines
991 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Helpers\Helper;
|
|
|
|
class ModalController extends Controller
|
|
{
|
|
function location() {
|
|
return view('modals.location');
|
|
}
|
|
|
|
function model() {
|
|
return view('modals.model');
|
|
}
|
|
|
|
function statuslabel() {
|
|
return view('modals.statuslabel')->with('statuslabel_types', Helper::statusTypeList());
|
|
}
|
|
|
|
function supplier() {
|
|
return view('modals.supplier');
|
|
}
|
|
|
|
function user() {
|
|
return view('modals.user');
|
|
}
|
|
|
|
function category() {
|
|
return view('modals.category');
|
|
}
|
|
|
|
function manufacturer() {
|
|
return view('modals.manufacturer');
|
|
}
|
|
|
|
function kitModel() {
|
|
return view('modals.kit-model');
|
|
}
|
|
|
|
function kitLicense() {
|
|
return view('modals.kit-license');
|
|
}
|
|
|
|
function kitConsumable() {
|
|
return view('modals.kit-consumable');
|
|
}
|
|
|
|
function kitAccessory() {
|
|
return view('modals.kit-accessory');
|
|
}
|
|
}
|