1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-03-09 16:10:12 +01:00
2021-04-16 03:30:00 +04:30

15 lines
211 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Admin extends Model
{
use HasFactory;
protected $table = 'admins';
}