add projet
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class ClassPrepAdjustment extends Model
|
||||
{
|
||||
protected $table = 'class_prep_adjustments';
|
||||
protected $fillable = [
|
||||
'class_section_id',
|
||||
'item_name',
|
||||
'adjustment',
|
||||
'adjustable',
|
||||
'school_year',
|
||||
'created_at',
|
||||
];
|
||||
public $timestamps = false;
|
||||
}
|
||||
Reference in New Issue
Block a user