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