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

12 lines
177 B
PHP
Executable File

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Button extends Model
{
use HasFactory;
}