Added plant_id and item_characteritics id in model file
Some checks failed
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (push) Has been cancelled
Scan for leaked secrets using Kingfisher / kingfisher-secrets-scan (pull_request) Successful in 10s
Gemini PR Review / Gemini PR Review (pull_request) Successful in 22s
Laravel Larastan / larastan (pull_request) Failing after 3m26s
Laravel Pint / pint (pull_request) Failing after 3m28s

This commit is contained in:
dhanabalan
2025-12-23 11:20:18 +05:30
parent 530078a4d8
commit 6d2ae5a324

View File

@@ -3,6 +3,7 @@
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\SoftDeletes;
class StickerStructureDetail extends Model
@@ -11,6 +12,8 @@ class StickerStructureDetail extends Model
use SoftDeletes;
protected $fillable = [
'plant_id',
'item_characteristic_id',
'sticker_id',
'sticker_width',
'sticker_height',
@@ -23,4 +26,15 @@ class StickerStructureDetail extends Model
'created_by',
'updated_by'
];
public function plant(): BelongsTo
{
return $this->belongsTo(Plant::class);
}
public function itemCharacteristic(): BelongsTo
{
return $this->belongsTo(ItemCharacteristic::class, 'item_characteristic_id');
}
}