1
0
mirror of https://github.com/cp6/my-idlers.git synced 2024-09-29 19:57:08 +02:00
my-idlers/app/Models/Misc.php

18 lines
309 B
PHP
Raw Normal View History

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Misc extends Model
{
use HasFactory;
public $incrementing = false;
protected $table = 'misc_services';
protected $fillable = ['id', 'name', 'owned_since'];
}