modifed blade for unpaid invoices on admin dashboard
This commit is contained in:
@@ -177,7 +177,9 @@ class MiningTaxesController extends Controller
|
|||||||
|
|
||||||
foreach($extractions as $extraction) {
|
foreach($extractions as $extraction) {
|
||||||
foreach($structures as $structure) {
|
foreach($structures as $structure) {
|
||||||
if($structure['date'] == $esiHelper->DecodeDate($extraction->chunk_arrival_time)) {
|
$tempStructureDate = Carbon::createFromFormat('Y-d-m H:m', $structure['date'])->toDateString();
|
||||||
|
$extractionDate = Carbon::createFromFormat('Y-d-m H:m', $esiHelper->DecodeDate($extraction->chunk_arrival_time))->toDateString();
|
||||||
|
if($tempStructureDate == $extractionDate) {
|
||||||
$structure['total'] = $structure['total'] + 1;
|
$structure['total'] = $structure['total'] + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -207,8 +209,8 @@ class MiningTaxesController extends Controller
|
|||||||
'backgroundColor' => '#11FFFF',
|
'backgroundColor' => '#11FFFF',
|
||||||
],
|
],
|
||||||
'colorAxis' => [
|
'colorAxis' => [
|
||||||
'values' => [0, 100],
|
'values' => [0, 10],
|
||||||
'colors' => ['black', 'green'],
|
'colors' => ['green', 'red'],
|
||||||
],
|
],
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user