@extends('admin.layouts.master') @section('title', $title) @section('content')
| {{ __('dashboard.sl') }} | {{ __('dashboard.invoice_no') }} | {{ __('dashboard.name') }} | {{ __('dashboard.email') }} | {{ __('dashboard.invoice_date') }} | {{ __('dashboard.invoice_type') }} | {{ __('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->invoice_type == 0 ) {{ __('dashboard.estimate') }} @elseif( $row->invoice_type == 1 ) {{ __('dashboard.advance') }} @elseif( $row->invoice_type == 2 ) {{ __('dashboard.interval') }} @elseif( $row->invoice_type == 3 ) {{ __('dashboard.milestone') }} @elseif( $row->invoice_type == 4 ) {{ __('dashboard.final') }} @elseif( $row->invoice_type == 5 ) {{ __('dashboard.full') }} @endif | @if( $row->status == 1 ) {{ __('dashboard.pending') }} @elseif( $row->status == 2 ) {{ __('dashboard.paid') }} @elseif( $row->status == 0 ) {{ __('dashboard.canceled') }} @endif | @include('admin.inc.delete') |