@extends('template.layout')
@section('title', 'Archive')
@section('submenuItem', 'archive')
@section('content')
@foreach($allNews as $news)
@php
$rowClass = $loop->index % 2 == 0 ? 'Odd' : 'Even';
@endphp
|
{{ date('M d Y', strtotime($news->created_at)) }} |
{{ $news->title }}
|
@endforeach
|
|
@endsection