List of Subscriptions
@if($subscribes->count() == 0)
@else
{{ label('lbl_no_information') }}
| # | Name | 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