Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
tipuloidea
/
back
/
vendor
/
laravel
/
telescope
/
src
/
Http
/
Controllers
:
QueueBatchesController.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Laravel\Telescope\Http\Controllers; use Illuminate\Bus\BatchRepository; use Laravel\Telescope\Contracts\EntriesRepository; use Laravel\Telescope\EntryType; use Laravel\Telescope\EntryUpdate; use Laravel\Telescope\Storage\EntryQueryOptions; use Laravel\Telescope\Watchers\BatchWatcher; class QueueBatchesController extends EntryController { /** * The entry type for the controller. * * @return string */ protected function entryType() { return EntryType::BATCH; } /** * The watcher class for the controller. * * @return string */ protected function watcher() { return BatchWatcher::class; } /** * Get an entry with the given ID. * * @param \Laravel\Telescope\Contracts\EntriesRepository $storage * @param int $id * @return \Illuminate\Http\JsonResponse */ public function show(EntriesRepository $storage, $id) { $batch = app(BatchRepository::class)->find($id); $storage->update(collect([ new EntryUpdate($id, EntryType::BATCH, $batch?->toArray() ?: [] ), ])); $entry = $storage->find($id)->generateAvatar(); return response()->json([ 'entry' => $entry, 'batch' => $storage->get(null, EntryQueryOptions::forBatchId($entry->batchId)->limit(-1)), ]); } }