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

{{ __('labels.backend.access.quotation.management') }} {{ __('labels.backend.access.quotation.deleted') }}

@foreach($quotation as $quotation_data) @endforeach
@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 !!}
{!! $quotation->total() !!} {{ trans_choice('labels.backend.access.quotation.table.total', $quotation->total()) }}
{!! $quotation->render() !!}
@endsection