StocksNew/Modules/Stocks/app/Models/Stock.php
Sampanna Rimal 82fab174dc changes
2024-09-04 12:22:04 +05:45

15 lines
269 B
PHP

<?php
namespace Modules\Stocks\Models;
use App\Traits\StatusTrait;
use Illuminate\Database\Eloquent\Model;
class Stock extends Model
{
use StatusTrait;
protected $table = 'tbl_stocks';
protected $guarded = [];
protected $appends = ['status_name'];
}