/**
  * Display the specified resource.
  *
  * @param  int  $id
  * @return Response
  */
 public function show()
 {
     $edit = About::all();
     $user_id = Auth::user()->id;
     $user_role = User::findOrfail($user_id);
     return view('admin.text.about.show', compact('user_role', 'edit'));
 }
 public function aboutus()
 {
     $textA = About::all();
     return view('aboutus', compact('textA'));
 }