Files
Portfolio-Game/api/app/Models/Skill.php
skycel 262242c7df 🌐 Add full i18n system frontend + API (Story 1.3)
Nuxt i18n with lazy-loaded JSON files, localized routes, hreflang SEO tags,
LanguageSwitcher component. Laravel SetLocale middleware, HasTranslations trait,
API Resources and Controllers for projects/skills with Accept-Language support.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-05 18:17:44 +01:00

40 lines
945 B
PHP

<?php
namespace App\Models;
use App\Traits\HasTranslations;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
class Skill extends Model
{
use HasTranslations;
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');
}
}