Two month of work

This commit is contained in:
2026-02-17 10:35:03 +01:00
parent 0ffbeeedff
commit d9fd3d1ccb
158 changed files with 5637 additions and 1512 deletions
+28
View File
@@ -0,0 +1,28 @@
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Factories\HasFactory;
class PipelineLane extends Model
{
use HasFactory;
protected $fillable = [
'title',
'position',
];
protected $casts = [
'position' => 'integer',
];
/**
* Get the pipeline items for the lane
*/
public function items()
{
return $this->hasMany(PipelineItem::class);
}
}