76 lines
1.5 KiB
PHP
76 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Conductors;
|
|
|
|
use App\Models\User;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Support\Facades\Cache;
|
|
|
|
class MediaJobConductor extends Conductor
|
|
{
|
|
/**
|
|
* The Model Class
|
|
* @var string
|
|
*/
|
|
protected $class = \App\Models\MediaJob::class;
|
|
|
|
/**
|
|
* The default sorting field
|
|
* @var string
|
|
*/
|
|
protected $sort = 'created_at';
|
|
|
|
/**
|
|
* The included fields
|
|
*
|
|
* @var string[]
|
|
*/
|
|
protected $includes = ['user'];
|
|
|
|
|
|
/**
|
|
* Return if the current model is creatable.
|
|
*
|
|
* @return boolean Allow creating model.
|
|
*/
|
|
public static function creatable(): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Return if the current model is updatable.
|
|
*
|
|
* @param Model $model The model.
|
|
* @return boolean Allow updating model.
|
|
*/
|
|
public static function updatable(Model $model): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Return if the current model is destroyable.
|
|
*
|
|
* @param Model $model The model.
|
|
* @return boolean Allow deleting model.
|
|
*/
|
|
public static function destroyable(Model $model): bool
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* Transform the final model data
|
|
*
|
|
* @param array $data The model data to transform.
|
|
* @return array The transformed model.
|
|
*/
|
|
public function transformFinal(array $data): array
|
|
{
|
|
unset($data['user_id']);
|
|
return $data;
|
|
}
|
|
}
|