canDo('tour.tour.import')) { return true; } return false; } /** * Determine if the given user can approve the given tour. * * @param Authenticatable $user * * @return bool */ public function export(Authenticatable $user) { if ($user->canDo('tour.tour.export')) { return true; } return false; } }