Files
shit-show/shit-show/app/Models/ShitUser.php
2021-09-11 16:02:23 +02:00

40 lines
619 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class ShitUser extends Model
{
use HasFactory;
/**
* The attributes that are mass assignable.
*
* @var string[]
*/
protected $fillable = [
'id',
'user_id',
'description',
];
/**
* The attributes that should be hidden for serialization.
*
* @var array
*/
protected $hidden = [
];
/**
* The attributes that should be cast.
*
* @var array
*/
protected $casts = [
];
}