public function __construct(NotificationRepository $notification)
 {
     parent::__construct();
     $this->entityName = 'notification.notifications';
     $this->repository = $notification;
 }
Ejemplo n.º 2
0
 public function __construct(PriorityRepository $priority)
 {
     parent::__construct();
     $this->entityName = 'support.priorities';
     $this->repository = $priority;
 }
Ejemplo n.º 3
0
 public function __construct(MemberRepository $member)
 {
     parent::__construct();
     $this->entityName = 'customers.members';
     $this->repository = $member;
 }
 public function __construct(JcmRepository $jcm)
 {
     parent::__construct();
     $this->entityName = 'jorocustommodule.jcms';
     $this->repository = $jcm;
 }
Ejemplo n.º 5
0
 public function __construct(EntryRepository $entry)
 {
     parent::__construct();
     $this->entityName = 'entry.entries';
     $this->repository = $entry;
 }
 public function __construct(EloquentModelsRepositoryInterface $eloquentModels)
 {
     parent::__construct();
     $this->entityName = 'elegant-' . ElegantModel::normalizeClassName($eloquentModels->model());
     $this->repository = $eloquentModels;
 }
Ejemplo n.º 7
0
 public function __construct(CompanyRepository $company)
 {
     parent::__construct();
     $this->entityName = 'customers.companies';
     $this->repository = $company;
 }
Ejemplo n.º 8
0
 public function __construct(ZoneRepository $zone)
 {
     parent::__construct();
     $this->entityName = 'localisation.zones';
     $this->repository = $zone;
 }
Ejemplo n.º 9
0
 public function __construct(TestimonialRepository $testimonial)
 {
     parent::__construct();
     $this->entityName = 'testimonials.testimonials';
     $this->repository = $testimonial;
 }
Ejemplo n.º 10
0
 public function __construct(DepartmentRepository $department)
 {
     parent::__construct();
     $this->entityName = 'staff.departments';
     $this->repository = $department;
 }
Ejemplo n.º 11
0
 public function __construct(SiteRepository $site)
 {
     parent::__construct();
     $this->entityName = 'site.sites';
     $this->repository = $site;
 }
Ejemplo n.º 12
0
 public function __construct(PostRepository $post)
 {
     parent::__construct();
     $this->entityName = 'posts';
     $this->repository = $post;
 }
 public function __construct(RecipeRepository $recipe)
 {
     parent::__construct();
     $this->entityName = 'recipe.recipes';
     $this->repository = $recipe;
 }
 public function __construct(MyModuleEntityRepository $mymoduleentity)
 {
     parent::__construct();
     $this->entityName = 'mymodule.mymoduleentities';
     $this->repository = $mymoduleentity;
 }
Ejemplo n.º 15
0
 public function __construct(GalleryRepository $gallery)
 {
     parent::__construct();
     $this->entityName = 'gallery.galleries';
     $this->repository = $gallery;
 }
Ejemplo n.º 16
0
 public function __construct(ArticleRepository $article)
 {
     parent::__construct();
     $this->entityName = 'knowledgebase.articles';
     $this->repository = $article;
 }
Ejemplo n.º 17
0
 public function __construct(CategoryRepository $category)
 {
     parent::__construct();
     $this->entityName = 'module.categories';
     $this->repository = $category;
 }
Ejemplo n.º 18
0
 public function __construct(ProfileRepository $profile)
 {
     parent::__construct();
     $this->entityName = 'profile.profiles';
     $this->repository = $profile;
 }
Ejemplo n.º 19
0
 public function __construct(TagRepository $tag)
 {
     parent::__construct();
     $this->entityName = 'tags';
     $this->repository = $tag;
 }
Ejemplo n.º 20
0
 public function __construct(CountryRepository $country)
 {
     parent::__construct();
     $this->entityName = 'localisation.countries';
     $this->repository = $country;
 }
Ejemplo n.º 21
0
 public function __construct(FeedRepository $feed)
 {
     parent::__construct();
     $this->entityName = 'feeds.feeds';
     $this->repository = $feed;
 }
Ejemplo n.º 22
0
 public function __construct(FaqRepository $faq)
 {
     parent::__construct();
     $this->entityName = 'faq.faqs';
     $this->repository = $faq;
 }
Ejemplo n.º 23
0
 public function __construct(MenuItemRepository $menuItem)
 {
     parent::__construct();
     $this->entityName = 'menusItems';
     $this->repository = $menuItem;
 }
Ejemplo n.º 24
0
 public function __construct(SettingRepository $setting)
 {
     parent::__construct();
     $this->entityName = 'setting.settings';
     $this->repository = $setting;
 }
 public function __construct(TranslationRepository $translation)
 {
     parent::__construct();
     $this->entityName = 'translation.translations';
     $this->repository = $translation;
 }
Ejemplo n.º 26
0
 public function __construct(NewsRepository $news)
 {
     parent::__construct();
     $this->entityName = 'pages';
     $this->repository = $news;
 }
Ejemplo n.º 27
0
 public function __construct(BlockRepository $block)
 {
     parent::__construct();
     $this->entityName = 'block.blocks';
     $this->repository = $block;
 }
Ejemplo n.º 28
0
 public function __construct(MenuRepository $menu)
 {
     parent::__construct();
     $this->entityName = 'menus';
     $this->repository = $menu;
 }
Ejemplo n.º 29
0
 public function __construct(PageRepository $page)
 {
     parent::__construct();
     $this->entityName = 'pages';
     $this->repository = $page;
 }
Ejemplo n.º 30
0
 public function __construct(TicketRepository $ticket)
 {
     parent::__construct();
     $this->entityName = 'support.tickets';
     $this->repository = $ticket;
 }