D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
re-viewers.com
/
app
/
Http
/
Controllers
/
Filename :
AdminController.php
back
Copy
<?php namespace App\Http\Controllers; use App\Models\Admin; use Illuminate\Http\Request; class AdminController extends Controller { /** * Display a listing of the resource. */ public function index() { // } /** * Show the form for creating a new resource. */ public function create() { // } /** * Store a newly created resource in storage. */ public function store(Request $request) { // } /** * Display the specified resource. */ public function show(Admin $admin) { // } /** * Show the form for editing the specified resource. */ public function edit(Admin $admin) { // } /** * Update the specified resource in storage. */ public function update(Request $request, Admin $admin) { // } /** * Remove the specified resource from storage. */ public function destroy(Admin $admin) { // } }