<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
/**
* @property int $id
* @property ?string $name
*/
class Finishing extends Model
{
protected $table = 'finishing';
public $timestamps = false;
protected $fillable = [
'name',
];
}