printer-manager-admin/app/Http/Resources/Printer/ListPrinterResource.php

24 lines
449 B
PHP
Raw Normal View History

2023-11-01 21:27:44 +00:00
<?php
namespace App\Http\Resources\Printer;
use Illuminate\Http\Resources\Json\JsonResource;
class ListPrinterResource extends JsonResource
{
public function toArray($request)
{
return [
'id' => $this->id,
'name' => $this->name,
'config' => $this->config,
'driver' => $this->driver,
'logs' => (object)[
],
'status' => 'idle'
];
}
}