@php
$headingCards = [
[
'title' => __('marketing.total_notification_sent'),
'icon' => 'fa fa-apple',
'delivered' => __('marketing.delivered'),
'delivered_class' => '__total_delivered',
'failed' => __('marketing.failed'),
'failed_class' => '__total_failed',
'background' => '#7289d740'
],
[
'title' => __('marketing.android'),
'icon' => 'fa fa-apple',
'delivered' => __('marketing.delivered'),
'delivered_class' => '__android_delivered',
'failed' => __('marketing.failed'),
'failed_class' => '__android_failed',
'background' => '#75dbd66b'
],
[
'title' => __('marketing.ios'),
'icon' => 'fa fa-address',
'delivered' => __('marketing.delivered'),
'delivered_class' => '__ios_delivered',
'failed' => __('marketing.failed'),
'failed_class' => '__ios_failed',
'background' => '#72c19c3d'
],
];
@endphp
@foreach($headingCards as $hc)
@endforeach