@extends('layouts.app')
@section('title', 'Landing pages')
@section('content')
Landing pages
New page
| Title |
Slug |
Status |
Updated |
|
@forelse($pages as $page)
| {{ $page->title }} |
{{ $page->slug }} |
{{ $page->status }} |
{{ $page->updated_at->format('M j, Y') }} |
@if($page->status === 'published')
View
@endif
Edit
|
@empty
| No landing pages yet. |
@endforelse
@if($pages->hasPages())
@endif
@endsection