@extends('layouts.default', [ 'sidebarLight' => true, 'headerMegaMenu' => true, 'sidebarMenu' => 'mail.log-list', ]) @section('title', 'Mail Log list') @push('css') @endpush @section('content')
{{ setOrderby( 'UID', 'log_uid' ) }} {{ setOrderby( 'Enquiry', 'en_uid' ) }} {{ setOrderby( 'Template', 'tpl_uid', 'text-left' ) }} {{ setOrderby( 'From', 'from', 'text-left' ) }} {{ setOrderby( 'To', 'to', 'text-left' ) }} {{ setOrderby( 'CC', 'cc', 'text-left' ) }} {{ setOrderby( 'Title', 'title', 'text-left' ) }} {{ setOrderby( 'Date', 'created_at' ) }} @foreach ($list as $log) @endforeach
{{ $log->log_uid }} @if ($log->en_uid) en_uid) }}#enquiry-tpl","",1200,700)'>{{ $log->en_uid }} @endif @if ($log->tpl_uid) {{ $log->tpl->tpl_title }} @else General mail @endif {{ $log->from }} {{ $log->to }} {{ $log->cc }} {{ $log->title }} {{ date_format($log->created_at, 'Y-m-d') }}
@endsection @push('scripts') @endpush