@extends('admin.layouts.master') @section('title', $title) @section('content')
@include('admin.inc.breadcrumb')

{{ $title }} {{ __('dashboard.list') }}

@foreach( $rows as $key => $row ) @endforeach
{{ __('dashboard.no') }} {{ __('dashboard.name') }} {{ __('dashboard.email') }} {{ __('dashboard.subject') }} {{ __('dashboard.date') }} {{ __('dashboard.status') }} {{ __('dashboard.action') }}
{{ $key + 1 }} {{ $row->name }} {{ $row->email }} {!! str_limit(strip_tags($row->subject), 50, ' ...') !!} {{ date('h:i:s A | d-M-y', strtotime($row->created_at)) }} @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif @include($view.'.show') @include('admin.inc.delete')
@endsection