2017-08-24 22:24:02 -07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
use App\Helpers\Helper;
|
|
|
|
|
|
|
|
class ModalController extends Controller
|
|
|
|
{
|
|
|
|
function location() {
|
|
|
|
return view('modals.location');
|
|
|
|
}
|
|
|
|
|
|
|
|
function model() {
|
2018-07-16 14:22:25 -07:00
|
|
|
return view('modals.model');
|
2017-08-24 22:24:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function statuslabel() {
|
|
|
|
return view('modals.statuslabel')->with('statuslabel_types', Helper::statusTypeList());
|
|
|
|
}
|
|
|
|
|
|
|
|
function supplier() {
|
|
|
|
return view('modals.supplier');
|
|
|
|
}
|
|
|
|
|
|
|
|
function user() {
|
|
|
|
return view('modals.user');
|
|
|
|
}
|
2017-12-19 20:30:46 -08:00
|
|
|
|
|
|
|
function category() {
|
|
|
|
return view('modals.category');
|
|
|
|
}
|
|
|
|
|
|
|
|
function manufacturer() {
|
|
|
|
return view('modals.manufacturer');
|
|
|
|
}
|
|
|
|
|
2017-08-24 22:24:02 -07:00
|
|
|
}
|