Ejemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->instructors = Instructor::all();
     $this->section_types = SectionType::all();
     $this->terms = ['W15', 'Sp15', 'Su15'];
 }
Ejemplo n.º 2
0
 /**
  * @param \App\Repositories\TagRepository
  */
 public function __construct(TagRepository $tagRepository)
 {
     parent::__construct();
     $this->tagRepository = $tagRepository;
 }