@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.date') }} {{ __('dashboard.status') }} {{ __('dashboard.action') }}
{{ $key + 1 }}{{ $row->name }}{{ $row->email }} {{ date('h:i:s A | d-M-y', strtotime($row->created_at)) }} @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif @include('admin.inc.delete')
@endsection