forked from s421507/eOSP2
13 lines
189 B
PHP
13 lines
189 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class unitFunctions extends Model
|
|
{
|
|
//
|
|
protected $primaryKey = 'id';
|
|
protected $fillable = [ 'unitFunction' ];
|
|
}
|