mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-30 20:16:46 -04:00
19 lines
369 B
PHP
19 lines
369 B
PHP
<?php
|
|
|
|
namespace Modules\AmazonS3\Entities;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
class AmazonS3Test extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $fillable = [];
|
|
|
|
protected static function newFactory()
|
|
{
|
|
return \Modules\AmazonS3\Database\factories\AmazonS3TestFactory::new();
|
|
}
|
|
}
|