@php $refId = Auth::user()->referral_id ?? Auth::user()->id; $creatives = [ 'Homepage' => [ [ 'title' => 'Sgt Godoy 1000+ Reviews Blue', 'image' => 'sgt-godoy-1000-reviews.png', 'link'=> 'https://www.sgtgodoy.com/' ], [ 'title' => 'Sgt Godoy 1000+ Reviews Red', 'image' => 'sgt-godoy-1000-reviews-red.png', 'link'=> 'https://www.sgtgodoy.com/' ], ], 'ATF Test Prep' => [ [ 'title' => 'Best ATF Test Prep', 'image' => 'sgt-godoy-atf-test-prep.png', 'link'=> 'https://www.sgtgodoy.com/atf-test-prep' ], [ 'title' => 'New Gen ATF Test Prep', 'image' => 'sgt-godoy-atf-test-prep-new-gen.png', 'link'=> 'https://www.sgtgodoy.com/atf-test-prep' ], ], 'FBI Test Prep' => [ [ 'title' => 'Best FBI Test Prep', 'image' => 'sgt-godoy-fbi-test-prep.png', 'link'=> 'https://www.sgtgodoy.com/fbi-test-prep' ], [ 'title' => 'New Gen FBI Test Prep', 'image' => 'sgt-godoy-fbi-test-prep-new-gen.png', 'link'=> 'https://www.sgtgodoy.com/fbi-test-prep' ], ], 'DEA Test Prep' => [ [ 'title' => 'Best DEA Test Prep', 'image' => 'sgt-godoy-best-dea-test-prep.png', 'link'=> 'https://www.sgtgodoy.com/dea-test-prep' ], [ 'title' => 'New Gen DEA Test Prep', 'image' => 'sgt-godoy-dea-test-prep-new-gen.png', 'link'=> 'https://www.sgtgodoy.com/dea-test-prep' ], ], 'HSI Test Prep' => [ [ 'title' => 'New Gen HSI Test Prep', 'image' => 'sgt-godoy-hsi-test-prep-new-gen.png', 'link'=> 'https://www.sgtgodoy.com/dea-test-prep' ], [ 'title' => 'Best HSI Test Prep', 'image' => 'sgt-godoy-best-hsi-test-prep.png', 'link'=> 'https://www.sgtgodoy.com/dea-test-prep' ], ] ]; @endphp

{{ __('Creatives') }}

@foreach($creatives as $title => $group)

{{ $title }}

@foreach($group as $creative) @endforeach
@endforeach