Files
admin-php-module/models/UnitsList.php
miroman-afk 415b291785 v.2.18
2022-06-16 12:50:50 +03:00

15 lines
251 B
PHP

<?php
namespace App\Component\Models;
use Illuminate\Database\Eloquent\Model;
class UnitsList extends Model {
protected $table = 'units_list';
/**
* The attributes that aren't mass assignable.
*
* @var array
*/
protected $guarded = [];
}