71 lines
1.7 KiB
PHP
Executable File
71 lines
1.7 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Actions\Titles\DeleteTitles;
|
|
use App\Actions\Titles\Retrieve\PaginateTitles;
|
|
use App\Actions\Titles\Store\StoreTitleData;
|
|
use App\Jobs\IncrementModelViews;
|
|
use App\Loaders\TitleLoader;
|
|
use App\Models\Title;
|
|
use Common\Core\BaseController;
|
|
|
|
class TitleController extends BaseController
|
|
{
|
|
public function index()
|
|
{
|
|
$this->authorize('index', Title::class);
|
|
|
|
$pagination = app(PaginateTitles::class)->execute(request()->all());
|
|
|
|
return $this->success(['pagination' => $pagination]);
|
|
}
|
|
|
|
public function show()
|
|
{
|
|
$data = (new TitleLoader())->loadData(request('loader'));
|
|
|
|
$this->authorize('show', $data['title']);
|
|
|
|
(new IncrementModelViews())->execute($data['title']);
|
|
|
|
return $this->renderClientOrApi([
|
|
'pageName' => 'title-page',
|
|
'data' => $data,
|
|
]);
|
|
}
|
|
|
|
public function update(int $id)
|
|
{
|
|
$this->authorize('update', Title::class);
|
|
|
|
$data = request()->all();
|
|
$title = Title::findOrFail($id);
|
|
|
|
$title = app(StoreTitleData::class)->execute($title, $data, [
|
|
'overrideWithEmptyValues' => true,
|
|
]);
|
|
|
|
return $this->success(['title' => $title]);
|
|
}
|
|
|
|
public function store()
|
|
{
|
|
$this->authorize('store', Title::class);
|
|
|
|
$title = Title::create(request()->all());
|
|
|
|
return $this->success(['title' => $title]);
|
|
}
|
|
|
|
public function destroy(string $ids)
|
|
{
|
|
$titleIds = explode(',', $ids);
|
|
$this->authorize('destroy', Title::class);
|
|
|
|
app(DeleteTitles::class)->execute($titleIds);
|
|
|
|
return $this->success();
|
|
}
|
|
}
|