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

Manage Tiers

Create Tier
@if(session('success')) @endif @if($tiers->isEmpty()) @else
@foreach($tiers as $tier) @endforeach
Title Status Featured Last Updated Actions
{{ $tier->title }} @if($tier->featured_image) Has Image @endif @if($tier->status === 'published') Published @elseif($tier->status === 'draft') Draft @else Archived @endif @if($tier->is_featured) Featured @else - @endif {{ $tier->updated_at->format('d M Y, h:i A') }}
Edit View
@csrf @method('DELETE')
{{ $tiers->links() }}
@endif
@endsection @push('styles') @endpush