<?php

namespace Bixo\Payment\Policies;

use Bixo\Payment\Models\Detail;
use Illuminate\Foundation\Auth\User as Authenticatable;

trait DetailAction
{

    /**
     * Determine if the given user can copy the given detail.
     *
     * @param Authenticatable $user
     *
     * @return bool
     */
    public function copy(Authenticatable $user, Detail $detail)
    {

        if ($authUser->canDo('payment.detail.action.copy')) {
            return true;
        }

        $this->model->is_owner;
    }

    /**
     * Determine if the given user can empty the given detail.
     *
     * @param Authenticatable $user
     *
     * @return bool
     */
    function empty(Authenticatable $user, Detail $detail) {

        if ($authUser->canDo('payment.detail.action.empty')) {
            return true;
        }

        $this->model->is_owner;
    }

    /**
     * Determine if the given user can transfer the given detail.
     *
     * @param Authenticatable $user
     *
     * @return bool
     */
    public function transfer(Authenticatable $user, Detail $detail)
    {

        if ($authUser->canDo('payment.detail.action.transfer')) {
            return true;
        }

        $this->model->is_owner;
    }

}