PATH:
home
/
lab2454c
/
aficb.com
/
app
/
Http
/
Controllers
/
Admin
<?php namespace App\Http\Controllers\Admin; use App\Models\AdminUser; use Illuminate\Http\Request; class AdminUserController extends Controller { public function __construct() { $this->middleware('auth:admin'); } /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() { // } /** * Show the form for creating a new resource. * * @return \Illuminate\Http\Response */ public function create() { // } /** * Store a newly created resource in storage. * * @param \Illuminate\Http\Request $request * @return \Illuminate\Http\Response */ public function store(Request $request) { // } /** * Display the specified resource. * * @param \App\Models\AdminUser $adminUser * @return \Illuminate\Http\Response */ public function show(AdminUser $adminUser) { // } /** * Show the form for editing the specified resource. * * @param \App\Models\AdminUser $adminUser * @return \Illuminate\Http\Response */ public function edit(AdminUser $adminUser) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Models\AdminUser $adminUser * @return \Illuminate\Http\Response */ public function update(Request $request, AdminUser $adminUser) { // } /** * Remove the specified resource from storage. * * @param \App\Models\AdminUser $adminUser * @return \Illuminate\Http\Response */ public function destroy(AdminUser $adminUser) { // } }
[-] HomeBannerController.php
[edit]
[-] EventController.php
[edit]
[-] CategoryController.php
[edit]
[-] PasswordController.php
[edit]
[-] CareerController.php
[edit]
[-] CareerContentController.php
[edit]
[+]
..
[-] EventContentController.php
[edit]
[-] SiteSettingController.php
[edit]
[-] ServiceController.php
[edit]
[-] PageController.php
[edit]
[-] TestimonialController.php
[edit]
[-] HomeTitleController.php
[edit]
[-] SocialLinkController.php
[edit]
[-] FeaturedProductController.php
[edit]
[-] ExploreController.php
[edit]
[-] MinerPageController.php
[edit]
[-] AdminUserController.php
[edit]
[-] LeadershipController.php
[edit]
[-] FaqController.php
[edit]
[-] CommodityTraderPageController.php
[edit]
[-] GalleryController.php
[edit]
[-] LoginController.php
[edit]
[-] MinerContentController.php
[edit]
[-] TraderBannerLinkController.php
[edit]
[-] DashboardController.php
[edit]
[-] MinerBannerLinkController.php
[edit]
[-] CommodityTraderContentController.php
[edit]