X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/realesbar-X/app/Http/Controllers/Admin
home
/
gfecatvj
/
sites
/
realesbar-X
/
app
/
Http
/
Controllers
/
Admin
/
📁
..
📄
DashController.php
(5.06 KB)
📄
PropertyController.php
(1.66 KB)
Editing: PropertyController.php
<?php namespace App\Http\Controllers\Admin; use App\Http\Controllers\Controller; use App\Property; use Illuminate\Http\Request; class PropertyController 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\Property $property * @return \Illuminate\Http\Response */ public function show(Property $property) { // } /** * Show the form for editing the specified resource. * * @param \App\Property $property * @return \Illuminate\Http\Response */ public function edit(Property $property) { // } /** * Update the specified resource in storage. * * @param \Illuminate\Http\Request $request * @param \App\Property $property * @return \Illuminate\Http\Response */ public function update(Request $request, Property $property) { // } /** * Remove the specified resource from storage. * * @param \App\Property $property * @return \Illuminate\Http\Response */ public function destroy(Property $property) { // } }
Upload File
Create Folder