12 lines
173 B
PHP
12 lines
173 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class SIMBHPReport extends Model
|
|
{
|
|
protected $table = "simbhpreport";
|
|
protected $guarded = [];
|
|
}
|