@extends('backend.layouts.app') @section('title', app_name() . ' | ' . __('labels.backend.access.quotation.management')) @section('breadcrumb-links') @include('backend.quotation.includes.breadcrumb-links') @endsection @section('content')
| @lang('labels.backend.access.quotation.table.quotation_message') | @lang('labels.backend.access.quotation.table.posted_at') | @lang('labels.backend.access.quotation.table.payment_status') | @lang('labels.general.actions') |
|---|---|---|---|
| {{ $quotation_data->quotation_message }} | {{ $quotation_data->created_at->diffForHumans() }} | @if($quotation_data->payment_status == 0) {{ 'Unpaid' }} @elseif($quotation_data->payment_status == 1) {{ 'Paid' }} @endif | {!! $quotation_data->action_buttons !!} |