22 lines
332 B
PHP
22 lines
332 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class QueueItem extends Model
|
|
{
|
|
/**
|
|
* The attributes that are mass assignable.
|
|
*
|
|
* @var array
|
|
*/
|
|
protected $fillable = [
|
|
'batch_reference',
|
|
'action_type',
|
|
'album_id',
|
|
'photo_id',
|
|
'queued_at'
|
|
];
|
|
}
|