/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $inboxs = Inbox::orderBy('id', 'desc')->get();
     return View::make('backend.inboxs.index')->with('inboxs', $inboxs);
 }