/**
  * List All Model Items inc Trashed.
  * 
  * @return \Illuminate\Http\Response
  */
 public function getAll()
 {
     if (!$this->modelAdmin->hasSoftDeleting()) {
         return $this->missingMethod();
     }
     return view('flare::admin.modeladmin.all', ['modelItems' => $this->modelAdmin->allItems(), 'totals' => $this->modelAdmin->totals()]);
 }