mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
e3e0d57f56
* Add IDE Helper files * Cleanup imports - Alphabetises imports - Removes unused imports * Add Platform requirements * Move filling asset into block where asset exists * Remove duplicate array keys
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
namespace App\Http\Transformers;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Models\Depreciation;
|
|
use Gate;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
|
|
class DepreciationsTransformer
|
|
{
|
|
|
|
public function transformDepreciations (Collection $depreciations)
|
|
{
|
|
$array = array();
|
|
foreach ($depreciations as $depreciation) {
|
|
$array[] = self::transformDepreciation($depreciation);
|
|
}
|
|
return (new DatatablesTransformer)->transformDatatables($array);
|
|
}
|
|
|
|
public function transformDepreciation (Depreciation $depreciation)
|
|
{
|
|
$array = [
|
|
'id' => (int) $depreciation->id,
|
|
'name' => e($depreciation->name),
|
|
'months' => $depreciation->months . ' '. trans('general.months'),
|
|
'created_at' => Helper::getFormattedDateObject($depreciation->created_at, 'datetime'),
|
|
'updated_at' => Helper::getFormattedDateObject($depreciation->updated_at, 'datetime'),
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'update' => Gate::allows('update', Depreciation::class) ? true : false,
|
|
'delete' => Gate::allows('delete', Depreciation::class) ? true : false,
|
|
];
|
|
|
|
$array += $permissions_array;
|
|
|
|
return $array;
|
|
}
|
|
|
|
|
|
|
|
}
|