15
app/Models/Image.php
Executable file
15
app/Models/Image.php
Executable file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* @property string $source
|
||||
* @property string $url
|
||||
*/
|
||||
class Image extends Model
|
||||
{
|
||||
protected $guarded = ['id'];
|
||||
protected $hidden = ['model_id', 'model_type'];
|
||||
}
|
||||
Reference in New Issue
Block a user