/**
  * Display a listing of the resource.
  *
  * @return \Illuminate\View\View
  */
 public function index()
 {
     $brands = $this->brands->get();
     return \View::make('admin.brands.index', compact('brands'));
 }