Missing total argument on transformDeprecations method

Removed duplicate array key on transformDeprecation method
This commit is contained in:
Mike Roquemore 2022-06-15 21:52:15 -05:00
parent af66f83a3d
commit 8a27ef30d5

View file

@ -9,14 +9,14 @@ use Illuminate\Database\Eloquent\Collection;
class DepreciationsTransformer
{
public function transformDepreciations(Collection $depreciations)
public function transformDepreciations(Collection $depreciations, $total)
{
$array = [];
foreach ($depreciations as $depreciation) {
$array[] = self::transformDepreciation($depreciation);
}
return (new DatatablesTransformer)->transformDatatables($array);
return (new DatatablesTransformer)->transformDatatables($array, $total);
}
public function transformDepreciation(Depreciation $depreciation)
@ -27,8 +27,7 @@ class DepreciationsTransformer
'months' => $depreciation->months.' '.trans('general.months'),
'depreciation_min' => $depreciation->depreciation_min,
'created_at' => Helper::getFormattedDateObject($depreciation->created_at, 'datetime'),
'updated_at' => Helper::getFormattedDateObject($depreciation->updated_at, 'datetime'),
'depreciation_min' =>($depreciation->depreciation_min),
'updated_at' => Helper::getFormattedDateObject($depreciation->updated_at, 'datetime')
];
$permissions_array['available_actions'] = [
@ -40,4 +39,4 @@ class DepreciationsTransformer
return $array;
}
}
}