first commit

This commit is contained in:
2026-01-13 20:57:58 -06:00
commit afd9118d1e
239 changed files with 49001 additions and 0 deletions

21
app/iChambaParameter.php Normal file
View File

@@ -0,0 +1,21 @@
<?php
namespace App;
use App\Models\Suppliers;
use Illuminate\Database\Eloquent\Model;
class iChambaParameter extends Model
{
//
protected $fillable = [
'parameter',
'num_value',
'string_value',
];
public function suppliers()
{
return $this->hasMany(Suppliers::class);
}
}