mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 20:34:09 +00:00
8a28eb1790
This reverts merge request !5
15 lines
251 B
PHP
15 lines
251 B
PHP
<?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'
|
|
];
|
|
}
|