예제 #1
0
 /**
  * Show the form for editing the specified sites.
  *
  * @param  int  $id
  * @return \Illuminate\View\View
  */
 public function edit($id)
 {
     $sites = Sites::find($id);
     return view('admin.sites.edit', compact('sites'));
 }