mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
f9e190eb32
Signed-off-by: snipe <snipe@snipe.net>
56 lines
1.6 KiB
PHP
56 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Transformers;
|
|
|
|
use App\Models\Asset;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class ComponentsAssetsTransformer
|
|
{
|
|
public function transformAssets(Collection $assets, $total)
|
|
{
|
|
$array = [];
|
|
foreach ($assets as $asset) {
|
|
$array[] = self::transformAsset($asset);
|
|
}
|
|
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformAsset(Asset $asset)
|
|
{
|
|
$array = [
|
|
'id' => $asset->id,
|
|
'name' => e($asset->name),
|
|
'created_at' => $asset->created_at->format('Y-m-d'),
|
|
'qty' => $asset->components()->count(),
|
|
'user_can_checkout' => $asset->availableForCheckout(),
|
|
'note' => e($asset->note),
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'checkout' => Gate::allows('checkout', Asset::class),
|
|
'checkin' => Gate::allows('checkin', Asset::class),
|
|
'update' => Gate::allows('update', Asset::class),
|
|
'delete' => Gate::allows('delete', Asset::class),
|
|
];
|
|
|
|
$array += $permissions_array;
|
|
|
|
if ($asset->model->fieldset) {
|
|
foreach ($asset->model->fieldset->fields as $field) {
|
|
$fields_array = [$field->name => $asset->{$field->db_column}];
|
|
$array += $fields_array;
|
|
}
|
|
}
|
|
|
|
return $array;
|
|
}
|
|
|
|
public function transformAssetsDatatable($assets)
|
|
{
|
|
return (new DatatablesTransformer)->transformDatatables($assets);
|
|
}
|
|
}
|