/home/techb158/ileadtechnology.com/SSM/app/Policies/finance
Edit: /home/techb158/ileadtechnology.com/SSM/app/Policies/finance/AccountPolicy.php (1649B)
can('list-account');
}
/**
* Determine whether the user can create account.
*
* @param \App\User $user
* @return mixed
*/
public function create(User $user)
{
return $user->can('create-account');
}
/**
* Determine whether the user can view the account.
*
* @param \App\User $user
* @param \App\Models\Finance\Account $account
* @return mixed
*/
public function show(User $user)
{
return $user->can('list-account');
}
/**
* Determine whether the user can update the account.
*
* @param \App\User $user
* @param \App\Models\Finance\Account $account
* @return mixed
*/
public function update(User $user)
{
return $user->can('edit-account');
}
/**
* Determine whether the user can delete the account.
*
* @param \App\User $user
* @param \App\Models\Finance\Account $account
* @return mixed
*/
public function delete(User $user)
{
return $user->can('delete-account');
}
}