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

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

@foreach( $rows as $key => $row ) @endforeach
{{ __('dashboard.sl') }} {{ __('dashboard.quote_no') }} {{ __('dashboard.name') }} {{ __('dashboard.email') }} {{ __('dashboard.quote_placed') }} {{ __('dashboard.status') }} {{ __('dashboard.action') }}
{{ $key + 1 }} #{{ $row->id }} {{ $row->name }} {{ $row->email }} {{ date('h:i:s A | d-M-y', strtotime($row->created_at)) }} @if( $row->status == 1 ) {{ __('dashboard.pending') }} @elseif( $row->status == 2 ) {{ __('dashboard.estimated') }} @elseif( $row->status == 3 ) {{ __('dashboard.approved') }} @elseif( $row->status == 0 ) {{ __('dashboard.rejected') }} @endif @include('admin.inc.delete')
@endsection