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

Manage Tier

@can('user_create') Add Tier @endcan
@if ($message = Session::get('success'))

{{ $message }}

@endif
{{-- --}} {{-- --}} @if($tiers)
                                   
                                    
@php $i = 0; @endphp @foreach($tiers as $tier) {{-- --}} {{-- --}} @endforeach @else

No records found!

@endif
# Title Description PointsExpiryStatusExpiry TypeAction
{{ ++$i }} {{ $tier->title }} {{ $tier->description }} {{ $tier->min_points }}{{ date('M d, Y',strtotime($tier->expiry)) }}@if( $tier->status == '1' ) {{ 'Published' }} @else {{ 'Draft' }} @endif@if( $tier->expiry_type == '1' ) {{ 'Expiry' }} @else {{ 'During' }} @endif
@endsection