initial commit

This commit is contained in:
bastien
2026-06-28 12:29:53 +02:00
parent 03e85d2f9d
commit b2443b654c
220 changed files with 24969 additions and 1 deletions
@@ -0,0 +1,18 @@
<?php
namespace App\Models\Concerns;
use App\Models\Organization;
use Illuminate\Database\Eloquent\Builder;
trait BelongsToOrganization
{
public function scopeForOrganization(Builder $query, Organization|int $organization): Builder
{
$organizationId = $organization instanceof Organization ? $organization->id : $organization;
return $query->whereHas('establishment', function (Builder $query) use ($organizationId) {
$query->where('organization_id', $organizationId);
});
}
}
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace App\Models\Concerns;
use Illuminate\Support\Str;
trait HasUuid
{
protected static function bootHasUuid(): void
{
static::creating(function ($model) {
if (empty($model->uuid)) {
$model->uuid = (string) Str::uuid();
}
});
}
}