Files
streamline-emr/docker/streamline-src/app/Models/OpticalStockReconciliation.php
T
alec.turner 4a89356390 Import latest app updates from streamline
An updated set of source files and initialization was provided by streamline to
address issues observed during initial testing. These files have been updated in
order to generate a new set of app images.
2024-04-11 11:16:51 -07:00

17 lines
371 B
PHP

<?php
namespace Streamline\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
use OwenIt\Auditing\Contracts\Auditable;
class OpticalStockReconciliation extends Model implements Auditable {
use HasFactory;
use \OwenIt\Auditing\Auditable;
use SoftDeletes;
}