@extends('admin.layout') @section('content')

{{ __('Arcive') }}

{{ __('Arcive List:') }}

@foreach ($archives as $id=>$archive) @php $myArr = explode('/', $archive->date); $monthNum = $myArr[0]; $dateObj = DateTime::createFromFormat('!m', $monthNum); $monthName = $dateObj->format('F'); @endphp @endforeach
# {{ __('Date') }} {{ __('Action') }}
{{ ++$id }} {{$monthName}} {{$myArr[1]}} {{ __('Edit') }} {{ __('Delete') }}
@endsection