@extends('admin.layouts.master') @section('title', $title) @section('content')
| {{ __('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') |