@extends('cms.application') @section('content')
List of Subscriptions
@if($subscribes->count() == 0)
@else @foreach($subscribes as $key => $subscribe) @endforeach
# Name E-mail Created Option
{{$key+1}} @php echo wordwrap($subscribe->fullname,20,"
") @endphp
@php echo wordwrap($subscribe->email,50,"
") @endphp
{{ date_format(date_create($subscribe->created_at), 'dS M Y, H:i:s') }} {!! link_to_route('cms.subscribes.destroy', "Delete", array($subscribe->id), array('data-method' => 'delete', 'data-confirm' => 'Are you Sure' ,'class' => 'label theme-b bg-danger text-white f-12')) !!}
{{-- {!! $subscribes->render() !!} --}}
@endif
@stop