edster
Results
1
comments of
edster
Sample controller code ``` public function individual($slug, StaffRepositoryInterface $staff) { $staff = $staff->findBySlug($slug); $this->dispatch(new AddStaffBreadcrumb()); $this->dispatch(new AddStaffMemberBreadcrumb($staff)); } ```