@php
$posts = [
['title' => 'Top 10 Engine Maintenance Tips', 'excerpt' => 'Keep your engine running smoothly with these essential maintenance guidelines every car owner should know.', 'date' => 'March 15, 2024', 'img' => 'bernd-dittrich-s21cj56_TuU-unsplash.jpg'],
['title' => 'How to Choose the Right Brake Pads', 'excerpt' => 'A comprehensive guide to selecting brake pads that match your driving style and vehicle requirements.', 'date' => 'March 10, 2024', 'img' => 'jack-lucas-smith-l9brPcxp-pM-unsplash.jpg'],
['title' => 'Ultimate Guide to Car Lighting', 'excerpt' => 'Upgrade your visibility and style with our guide to modern automotive lighting solutions.', 'date' => 'March 05, 2024', 'img' => 'manuel-e-sankitts-i2kOA2p0DTo-unsplash.jpg'],
];
@endphp
@foreach($posts as $post)
{{ $post['date'] }}
{{ $post['title'] }}
{{ $post['excerpt'] }}
Read More
@endforeach