<?php

namespace App;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class ReportDetail extends Model
{
    use HasFactory;

    protected $table = 'report_details';

    protected $fillable = [
        'id', 'report_id', 'working_zone', 'piping', 'temperature_keeping', 'size', 'length', 'elbow', 'note', 'created_at', 'updated_at'
    ];
}
