dbfdg @extends('layouts.admin') @section('page-title') {{ __('Manage Quotation') }} @endsection @section('breadcrumb')
{{ __('Quotataion ID') }} | {{ __('Date') }} | {{ __('Customer') }} | {{ __('Warehouse') }} | @if (Gate::check('edit quotation') || Gate::check('delete quotation') || Gate::check('convert quotation')){{ __('Action') }} | @endif
---|---|---|---|---|
{{ Auth::user()->quotationNumberFormat($quotation->quotation_id) }} | {{ Auth::user()->dateFormat($quotation->quotation_date) }} | {{ !empty($quotation->customer) ? $quotation->customer->name : '' }} | {{ !empty($quotation->warehouse) ? $quotation->warehouse->name : '' }} | @if (Gate::check('edit quotation') || Gate::check('delete quotation') || Gate::check('convert quotation'))@if ($quotation->is_converted == 0) @can('convert quotation') @endcan @else {{-- @can('show pos') --}} {{-- @endcan --}} @endif @can('edit quotation') @endcan @can('delete quotation') @endcan | @endif