@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')
| 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 |