File: /var/www/ipsremont-demo/app/Models/Document.php
<?php
namespace App\Models;
/**
* @property int $id
* @property int $service_id
* @property string $method
* @property string $date
* @property int $number
* @property int $sum
* @property string $inn
* @property string $code
*/
class Document extends BaseModel
{
public const METHOD_GET_OUT_PAYMENT_ORDER = 'GetOutPaymentOrder';
public const METHOD_GET_IN_PAYMENT_ORDER = 'GetInPaymentOrder';
public const METHOD_SALES_RECEIPT = 'SalesReceipt';
public $timestamps = false;
protected $fillable = [
'service_id',
'method',
'date',
'number',
'sum',
'inn',
'code',
];
}