@include("admin.dashboard.partial.icon_card",[
"imagepath" => "asset/dashboard_icons/leasae.png",
"route"=> "leasing-dashboard-report-redirection",
"parameters" => ['branch_id' => $dash_params->branch_id, 'from' => $dash_params->from , 'to' => $dash_params->to , 'redirect_type' => 'total_lease'],
"target" => "_blank",
"value" => $label_data->total_leases,
"label" => 'Total Leases',
"col"=> 6,
])
@include("admin.dashboard.partial.icon_card",[
"imagepath" => "asset/dashboard_icons/amount.png",
"route"=> "leasing-dashboard-report-redirection",
"parameters" => ['branch_id' => $dash_params->branch_id , 'from' => $dash_params->from , 'to' => $dash_params->to , 'redirect_type' => 'lease_amount'],
"target" => "_blank",
"label" => 'Lease Amount '.$transaction->systemSettingCurrency(),
"value" => $transaction->addCommasFormatingNumber($label_data->lease_amount),
"col"=> 6,
])
@include("admin.dashboard.partial.icon_card",[
"imagepath" => "asset/dashboard_icons/liability-3.png",
"route"=> "leasing-dashboard-report-redirection",
"parameters" => ['branch_id' => $dash_params->branch_id , 'from' => $dash_params->from , 'to' => $dash_params->to , 'redirect_type' => 'collected_amount'],
"target" => "_blank",
"label" => 'Collected Amount '.$transaction->systemSettingCurrency(),
"value" => $transaction->addCommasFormatingNumber($label_data->collected_amount),
"col"=> 6,
])
@include("admin.dashboard.partial.icon_card",[
"imagepath" => "asset/dashboard_icons/balance_amount.png",
"route"=> "leasing-dashboard-report-redirection",
"parameters" => ['branch_id' => $dash_params->branch_id , 'from' => $dash_params->from , 'to' => $dash_params->to , 'redirect_type' => 'balance_amount'],
"target" => "_blank",
"label" => 'Balance Amount '.$transaction->systemSettingCurrency(),
"value" => $transaction->addCommasFormatingNumber($label_data->balance_amount),
"col"=> 6,
])