mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-31 14:16:57 -04:00
20 lines
296 B
PHP
20 lines
296 B
PHP
<?php
|
|
|
|
namespace Modules\Shipping\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class LabelConfig extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'condition',
|
|
'status',
|
|
'created_by',
|
|
];
|
|
|
|
|
|
}
|