Files
InvoiceShelf/app/Policies/EstimatePolicy.php
2024-01-29 04:46:01 -06:00

141 lines
3.1 KiB
PHP

<?php
namespace InvoiceShelf\Policies;
use Illuminate\Auth\Access\HandlesAuthorization;
use InvoiceShelf\Models\Estimate;
use InvoiceShelf\Models\User;
use Silber\Bouncer\BouncerFacade;
class EstimatePolicy
{
use HandlesAuthorization;
/**
* Determine whether the user can view any models.
*
* @return mixed
*/
public function viewAny(User $user)
{
if (BouncerFacade::can('view-estimate', Estimate::class)) {
return true;
}
return false;
}
/**
* Determine whether the user can view the model.
*
* @return mixed
*/
public function view(User $user, Estimate $estimate)
{
if (BouncerFacade::can('view-estimate', $estimate) && $user->hasCompany($estimate->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can create models.
*
* @return mixed
*/
public function create(User $user)
{
if (BouncerFacade::can('create-estimate', Estimate::class)) {
return true;
}
return false;
}
/**
* Determine whether the user can update the model.
*
* @return mixed
*/
public function update(User $user, Estimate $estimate)
{
if (BouncerFacade::can('edit-estimate', $estimate) && $user->hasCompany($estimate->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can delete the model.
*
* @return mixed
*/
public function delete(User $user, Estimate $estimate)
{
if (BouncerFacade::can('delete-estimate', $estimate) && $user->hasCompany($estimate->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can restore the model.
*
* @return mixed
*/
public function restore(User $user, Estimate $estimate)
{
if (BouncerFacade::can('delete-estimate', $estimate) && $user->hasCompany($estimate->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can permanently delete the model.
*
* @return mixed
*/
public function forceDelete(User $user, Estimate $estimate)
{
if (BouncerFacade::can('delete-estimate', $estimate) && $user->hasCompany($estimate->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can send email of the model.
*
* @param \InvoiceShelf\Models\Estimate $payment
* @return mixed
*/
public function send(User $user, Estimate $estimate)
{
if (BouncerFacade::can('send-estimate', $estimate) && $user->hasCompany($estimate->company_id)) {
return true;
}
return false;
}
/**
* Determine whether the user can delete models.
*
* @return mixed
*/
public function deleteMultiple(User $user)
{
if (BouncerFacade::can('delete-estimate', Estimate::class)) {
return true;
}
return false;
}
}