Files
twotalesanimation 6de01c13c5 New Initial Commit
2025-12-09 12:04:54 +02:00

23 lines
382 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class PrintStock extends Model
{
protected $fillable = [
'name',
'description',
'cost_per_meter',
'cost_per_m2',
'type',
'width'
];
public function products()
{
return $this->belongsToMany(Product::class, 'product_print_stocks');
}
}