%PDF- %PDF-
Direktori : /usr/local/apache/htdocs/app/Models/ |
Current File : //usr/local/apache/htdocs/app/Models/Usermeta.php |
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use App\Models\Concerns\Meta; class Usermeta extends Meta { use HasFactory; protected $table = 'user_meta'; /** * The attributes that are mass assignable. * * @var string[] */ protected $fillable = [ 'meta_key', 'meta_value', 'user_id' ]; /** * The attributes that should be hidden for serialization. * * @var array */ protected $hidden = [ ]; /** * The attributes that should be cast. * * @var array */ protected $casts = [ ]; }