@extends('layouts.app') @section('title') Email Log @stop @section('breadcrumb') @stop @section('content')
Search Email

All Emails

@foreach ($email_log as $log) @endforeach
# Title Receiver Email Content Time Status Action
{{ $count++ }} {{ $log->title }} {{ $log->receiver_email }} {{ $log->content }} {{ date('Y-m-d h:i:s A', strtotime($log->created_at)) }} @if ($log->status == 1) Success @else Fail @endif @if ($log->status != 1)
{!! csrf_field() !!}
@endif
@stop @section('js') @stop