Beispiel #1
0
 function __construct(SellerRepo $sellerRepo)
 {
     $this->middleware('auth');
     $this->sellerRepo = $sellerRepo;
     View::share('roles', Role::pluck('label', 'id')->all());
 }
Beispiel #2
0
 public function getRoles()
 {
     return Role::pluck('role', 'id');
 }