@extends('layouts.admin')
@section('title', 'Product releases — '.config('app.name'))
@section('page_title', 'Product releases')
@section('breadcrumbs')
CMS
Releases
@endsection
@section('content')
| Year |
Title |
Products |
Status |
|
@forelse ($pages as $page)
/releases/{{ $page->slug }} |
{{ $page->title }} |
{{ count($page->normalizedItems()) }} |
@if ($page->is_current)
Current
@endif
@if ($page->is_published)
Published
@else
Draft
@endif
|
Edit
· View
· Duplicate
·
|
@empty
| No release years yet. |
@endforelse
@endsection