Files
izyim/app/Models/PrimaryStep.php
T
2019-03-19 17:11:21 +08:00

15 lines
251 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PrimaryStep extends Model
{
protected $table = 'primary_steps';
protected $fillable = [
'reference_id', 'initial_name', 'final_name', 'description'
];
}