ok
Direktori : /home2/selectio/www/limpiar.in.net/resources/views/backend/marketing/subscribers/ |
Current File : /home2/selectio/www/limpiar.in.net/resources/views/backend/marketing/subscribers/index.blade.php |
@extends('backend.layouts.app') @section('content') <div class="card"> <div class="card-header"> <h5 class="mb-0 h6">{{translate('All Subscribers')}}</h5> </div> <div class="card-body"> <table class="table aiz-table mb-0"> <thead> <tr> <th data-breakpoints="lg">#</th> <th>{{translate('Email')}}</th> <th data-breakpoints="lg">{{translate('Date')}}</th> <th data-breakpoints="lg" class="text-right">{{translate('Options')}}</th> </tr> </thead> <tbody> @foreach($subscribers as $key => $subscriber) <tr> <td>{{ ($key+1) + ($subscribers->currentPage() - 1)*$subscribers->perPage() }}</td> <td><div class="text-truncate">{{ $subscriber->email }}</div></td> <td>{{ date('d-m-Y', strtotime($subscriber->created_at)) }}</td> <td class="text-right"> @can('delete_subscriber') <a href="#" class="btn btn-soft-danger btn-icon btn-circle btn-sm confirm-delete" data-href="{{route('subscriber.destroy', $subscriber->id)}}" title="{{ translate('Delete') }}"> <i class="las la-trash"></i> </a> @endcan </td> </tr> @endforeach </tbody> </table> <div class="clearfix"> <div class="pull-right"> {{ $subscribers->appends(request()->input())->links() }} </div> </div> </div> </div> @endsection @section('modal') @include('modals.delete_modal') @endsection