X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar-X/app/Http/Controllers
home
/
gfecatvj
/
sites
/
realesbar-X
/
app
/
Http
/
Controllers
/
📁
..
📁
Admin
📁
Agent
📄
AgentController.php
(1.58 KB)
📁
Auth
📁
Blogger
📄
Blogger.php
(2.29 KB)
📄
Controller.php
(4.41 KB)
📄
HomeController.php
(467 B)
📄
PropertyCler.php
(2.16 KB)
📁
User
Editing: AgentController.php
<?php namespace App\Http\Controllers; use App\Agency; use Illuminate\Http\Request; class AgentController extends Controller { /** * 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\Agency $agency * @return \Illuminate\Http\Response */ public function show(Agency $agency) { // } /** * Show the form for editing the specified resource. * * @param \App\Agency $agency * @return \Illuminate\Http\Response */ public function edit(Agency $agency) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Agency $agency * @return \Illuminate\Http\Response */ public function update(Request $request, Agency $agency) { // } /** * Remove the specified resource from storage. * * @param \App\Agency $agency * @return \Illuminate\Http\Response */ public function destroy(Agency $agency) { // } }
Upload File
Create Folder