ranjith-dev #674

Merged
jothi merged 6 commits from ranjith-dev into master 2026-05-29 14:57:36 +00:00
Showing only changes of commit ba0c6b18d7 - Show all commits

View File

@@ -0,0 +1,25 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\SoftDeletes;
class LeakTestReading extends Model
{
use SoftDeletes;
protected $fillable = [
'plant_id',
'item_code',
'serial_number',
'test_status',
'created_at',
'updated_at',
];
public function plant()
{
return $this->belongsTo(Plant::class);
}
}