Files
opensem/app/Models/Shop/DeliveryPackage.php
Ludovic CANDELLIER 5f215cef81 coding style
2023-09-13 22:53:37 +02:00

22 lines
504 B
PHP

<?php
namespace App\Models\Shop;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use Venturecraft\Revisionable\RevisionableTrait;
use Wildside\Userstamps\Userstamps;
class DeliveryPackage extends Model
{
use RevisionableTrait, SoftDeletes, Userstamps;
protected $guarded = ['id'];
protected $table = 'shop_delivery_packages';
protected $revisionEnabled = true;
protected $keepRevisionOf = ['weight', 'weight_flyer', 'weight_packaging'];
}