Files
streamline-emr/docker/_streamline-src/app/Models/MentalHealthConsultation.php
T

13 lines
279 B
PHP
Executable File

<?php
namespace Streamline\Models;
use Illuminate\Database\Eloquent\Model;
use OwenIt\Auditing\Contracts\Auditable;
class MentalHealthConsultation extends Model implements Auditable {
protected $table = 'mental_health_consultation';
use \OwenIt\Auditing\Auditable;
}