@extends('layouts.app') @section('content')
{{translate('Upload Images')}} {{translate('Create Template')}}

{{translate('Email Templates')}}

@foreach($templates as $key => $template) @endforeach
# {{translate('Name')}} {{translate('Status')}} {{translate('Created Date')}} {{translate('Options')}}
{{ ($key+1) + ($templates->currentPage() - 1)*$templates->perPage() }} {{$template->name}} {{date('d-m-Y h:i:s', strtotime($template->created_at))}}
{{ $templates->appends(request()->input())->links() }}
@endsection @section('script') @endsection