芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/invoicer.pulsehost.co.uk/app/Policies/CompanyPolicy.php
isOwner()) { return true; } return false; } public function delete(User $user, Company $company): bool { if ($user->id == $company->owner_id) { return true; } return false; } public function transferOwnership(User $user, Company $company) { if ($user->id == $company->owner_id) { return true; } return false; } }