public function __construct(NotificationRepository $notification)
 {
     parent::__construct();
     $this->entityName = 'notification.notifications';
     $this->repository = $notification;
 }
 public function __construct(PriorityRepository $priority)
 {
     parent::__construct();
     $this->entityName = 'support.priorities';
     $this->repository = $priority;
 }
 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;
 }
 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;
 }
 public function __construct(CompanyRepository $company)
 {
     parent::__construct();
     $this->entityName = 'customers.companies';
     $this->repository = $company;
 }
 public function __construct(ZoneRepository $zone)
 {
     parent::__construct();
     $this->entityName = 'localisation.zones';
     $this->repository = $zone;
 }
 public function __construct(TestimonialRepository $testimonial)
 {
     parent::__construct();
     $this->entityName = 'testimonials.testimonials';
     $this->repository = $testimonial;
 }
 public function __construct(DepartmentRepository $department)
 {
     parent::__construct();
     $this->entityName = 'staff.departments';
     $this->repository = $department;
 }
Example #11
0
 public function __construct(SiteRepository $site)
 {
     parent::__construct();
     $this->entityName = 'site.sites';
     $this->repository = $site;
 }
Example #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;
 }
Example #15
0
 public function __construct(GalleryRepository $gallery)
 {
     parent::__construct();
     $this->entityName = 'gallery.galleries';
     $this->repository = $gallery;
 }
 public function __construct(ArticleRepository $article)
 {
     parent::__construct();
     $this->entityName = 'knowledgebase.articles';
     $this->repository = $article;
 }
Example #17
0
 public function __construct(CategoryRepository $category)
 {
     parent::__construct();
     $this->entityName = 'module.categories';
     $this->repository = $category;
 }
Example #18
0
 public function __construct(ProfileRepository $profile)
 {
     parent::__construct();
     $this->entityName = 'profile.profiles';
     $this->repository = $profile;
 }
Example #19
0
 public function __construct(TagRepository $tag)
 {
     parent::__construct();
     $this->entityName = 'tags';
     $this->repository = $tag;
 }
 public function __construct(CountryRepository $country)
 {
     parent::__construct();
     $this->entityName = 'localisation.countries';
     $this->repository = $country;
 }
Example #21
0
 public function __construct(FeedRepository $feed)
 {
     parent::__construct();
     $this->entityName = 'feeds.feeds';
     $this->repository = $feed;
 }
Example #22
0
 public function __construct(FaqRepository $faq)
 {
     parent::__construct();
     $this->entityName = 'faq.faqs';
     $this->repository = $faq;
 }
Example #23
0
 public function __construct(MenuItemRepository $menuItem)
 {
     parent::__construct();
     $this->entityName = 'menusItems';
     $this->repository = $menuItem;
 }
Example #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;
 }
Example #26
0
 public function __construct(NewsRepository $news)
 {
     parent::__construct();
     $this->entityName = 'pages';
     $this->repository = $news;
 }
Example #27
0
 public function __construct(BlockRepository $block)
 {
     parent::__construct();
     $this->entityName = 'block.blocks';
     $this->repository = $block;
 }
Example #28
0
 public function __construct(MenuRepository $menu)
 {
     parent::__construct();
     $this->entityName = 'menus';
     $this->repository = $menu;
 }
Example #29
0
 public function __construct(PageRepository $page)
 {
     parent::__construct();
     $this->entityName = 'pages';
     $this->repository = $page;
 }
 public function __construct(TicketRepository $ticket)
 {
     parent::__construct();
     $this->entityName = 'support.tickets';
     $this->repository = $ticket;
 }