🗃️ Add database schema, models & seeders (Story 1.2)
Migrations (translations, projects, skills, skill_project), Eloquent models with belongsToMany relations, scopes, and test seeders (74 translations FR/EN, 10 skills, 3 projects, 12 skill-project links). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
48
api/app/Models/Project.php
Normal file
48
api/app/Models/Project.php
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
||||
|
||||
class Project extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'slug',
|
||||
'title_key',
|
||||
'description_key',
|
||||
'short_description_key',
|
||||
'image',
|
||||
'url',
|
||||
'github_url',
|
||||
'date_completed',
|
||||
'is_featured',
|
||||
'display_order',
|
||||
];
|
||||
|
||||
protected function casts(): array
|
||||
{
|
||||
return [
|
||||
'date_completed' => 'date',
|
||||
'is_featured' => 'boolean',
|
||||
];
|
||||
}
|
||||
|
||||
public function skills(): BelongsToMany
|
||||
{
|
||||
return $this->belongsToMany(Skill::class, 'skill_project')
|
||||
->withPivot(['level_before', 'level_after', 'level_description_key'])
|
||||
->withTimestamps();
|
||||
}
|
||||
|
||||
public function scopeFeatured(Builder $query): Builder
|
||||
{
|
||||
return $query->where('is_featured', true);
|
||||
}
|
||||
|
||||
public function scopeOrdered(Builder $query): Builder
|
||||
{
|
||||
return $query->orderBy('display_order');
|
||||
}
|
||||
}
|
||||
37
api/app/Models/Skill.php
Normal file
37
api/app/Models/Skill.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
||||
|
||||
class Skill extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'slug',
|
||||
'name_key',
|
||||
'description_key',
|
||||
'icon',
|
||||
'category',
|
||||
'max_level',
|
||||
'display_order',
|
||||
];
|
||||
|
||||
public function projects(): BelongsToMany
|
||||
{
|
||||
return $this->belongsToMany(Project::class, 'skill_project')
|
||||
->withPivot(['level_before', 'level_after', 'level_description_key'])
|
||||
->withTimestamps();
|
||||
}
|
||||
|
||||
public function scopeByCategory(Builder $query, string $category): Builder
|
||||
{
|
||||
return $query->where('category', $category);
|
||||
}
|
||||
|
||||
public function scopeOrdered(Builder $query): Builder
|
||||
{
|
||||
return $query->orderBy('display_order');
|
||||
}
|
||||
}
|
||||
27
api/app/Models/Translation.php
Normal file
27
api/app/Models/Translation.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
use Illuminate\Database\Eloquent\Builder;
|
||||
|
||||
class Translation extends Model
|
||||
{
|
||||
protected $fillable = ['lang', 'key_name', 'value'];
|
||||
|
||||
public function scopeForLang(Builder $query, string $lang): Builder
|
||||
{
|
||||
return $query->where('lang', $lang);
|
||||
}
|
||||
|
||||
public static function getTranslation(string $key, string $lang, string $fallback = 'fr'): ?string
|
||||
{
|
||||
$translation = static::where('key_name', $key)->where('lang', $lang)->first();
|
||||
|
||||
if (!$translation && $lang !== $fallback) {
|
||||
$translation = static::where('key_name', $key)->where('lang', $fallback)->first();
|
||||
}
|
||||
|
||||
return $translation?->value;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user