Facebook
From Paltry Bird, 3 Years ago, written in PHP.
Embed
Download Paste or View Raw
Hits: 462
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6.  
  7.  
  8.  
  9. class UserAddingDataController extends Controller
  10. {
  11.     /**
  12.      * Display a listing of the resource.
  13.      *
  14.      * @return \Illuminate\Http\Response
  15.      */
  16.     public function index()
  17.     {
  18.         return view('useraddingdata');
  19.     }
  20.  
  21.     /**
  22.      * Show the form for creating a new resource.
  23.      *
  24.      * @return \Illuminate\Http\Response
  25.      */
  26.     public function create()
  27.     {
  28.         //
  29.     }
  30.  
  31.     /**
  32.      * Store a newly created resource in storage.
  33.      *
  34.      * @param  \Illuminate\Http\Request  $request
  35.      * @return \Illuminate\Http\Response
  36.      */
  37.     public function store(Request $request)
  38.     {
  39.     }
  40.  
  41.     /**
  42.      * Display the specified resource.
  43.      *
  44.      * @param  int  $id
  45.      * @return \Illuminate\Http\Response
  46.      */
  47.     public function show($id)
  48.     {
  49.         //
  50.     }
  51.  
  52.     /**
  53.      * Show the form for editing the specified resource.
  54.      *
  55.      * @param  int  $id
  56.      * @return \Illuminate\Http\Response
  57.      */
  58.     public function edit($id)
  59.     {
  60.         //
  61.     }
  62.  
  63.     /**
  64.      * Update the specified resource in storage.
  65.      *
  66.      * @param  \Illuminate\Http\Request  $request
  67.      * @param  int  $id
  68.      * @return \Illuminate\Http\Response
  69.      */
  70.     public function update(Request $request, $id)
  71.     {
  72.         //
  73.     }
  74.  
  75.     /**
  76.      * Remove the specified resource from storage.
  77.      *
  78.      * @param  int  $id
  79.      * @return \Illuminate\Http\Response
  80.      */
  81.     public function destroy($id)
  82.     {
  83.         //
  84.     }
  85. }
  86.  

Replies to Untitled rss

Title Name Language When
Re: Untitled Obese Giraffe php 3 Years ago.
Re: Untitled Ivory Rhinoceros php 3 Years ago.