@extends('backend.layouts.app') @section('title', app_name() . ' | ' . __('labels.backend.access.report.management')) @section('breadcrumb-links') @include('backend.report.includes.breadcrumb-links') @endsection @section('content')

Report Management

{{csrf_field()}}
@foreach($quotation as $quotation_data) @endforeach
Quotation ID @lang('labels.backend.access.quotation.table.quotation_message') Amount($) Posted By @lang('labels.backend.access.quotation.table.posted_at') @lang('labels.backend.access.quotation.table.payment_status')
{{ $quotation_data->id }} {{ $quotation_data->quotation_message }} {{ $quotation_data->amount }} {{ $quotation_data->poster_name }} {{ $quotation_data->created_at->diffForHumans() }} @if($quotation_data->payment_status == 0) {{ 'Unpaid' }} @elseif($quotation_data->payment_status == 1) {{ 'Paid' }} @elseif($quotation_data->payment_status == 2) {{ 'Refunded' }} @endif
{!! $quotation->total() !!} {{ trans_choice('labels.backend.access.quotation.table.total', $quotation->total()) }}
{!! $quotation->render() !!}
@endsection