12-05-2026 Frontend dev
This commit is contained in:
parent
405df0a122
commit
5b8bdf4182
779 changed files with 480564 additions and 6241 deletions
|
|
@ -1,47 +0,0 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Created by Reliese Model.
|
||||
*/
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* Class SalutationTranslation
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property string $lang
|
||||
* @property Salutation $salutation
|
||||
* @package App\Models
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|SalutationTranslation newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|SalutationTranslation newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|SalutationTranslation query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|SalutationTranslation whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|SalutationTranslation whereLang($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|SalutationTranslation whereName($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class SalutationTranslation extends Model
|
||||
{
|
||||
protected $table = 'salutation_translation';
|
||||
public $incrementing = false;
|
||||
public $timestamps = false;
|
||||
|
||||
protected $casts = [
|
||||
'id' => 'int'
|
||||
];
|
||||
|
||||
protected $fillable = [
|
||||
'id',
|
||||
'name',
|
||||
'lang'
|
||||
];
|
||||
|
||||
public function salutation()
|
||||
{
|
||||
return $this->belongsTo(Salutation::class, 'id');
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue