@extends('layouts.layout') @section('content')
@can('smtp-create')

+ {{ __('Add New SMTP') }}

@endcan

{{ __('SMTP Configrution') }}

@foreach ($lists as $list) @endforeach
{{ __('Id') }} {{ __('Name') }} {{ __('Email') }} {{ __('Host') }} {{ __('Port') }} {{ __('User') }} {{ __('Password') }} {{ __('Type') }} {{ __('Status') }} {{ __('Actions') }}
{{ $list->id }} {{ $list->sender_name }} {{ $list->sender_email }} {{ $list->smtp_host }} {{ $list->smtp_port }} {{ $list->smtp_user }} {{ $list->smtp_password }} @if($list->smtp_type == 'ssl') @lang('Ssl') @elseif($list->smtp_type == 'tls') @lang('Tls') @else @lang('Default') @endif @if($list->status == 0) @lang('Inactive') @else @lang('Active') @endif @can('smtp-update')    @endcan @can('smtp-delete') @endcan
{{ $lists->links() }}
@include('layouts.delete_modal') @endsection