@extends('portal.ninja2020.layout.app') @section('meta_title', ctrans('texts.quotes')) @section('header') {{ Breadcrumbs::render('quotes') }} @if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif

{{ ctrans('texts.quotes') }}

{{ ctrans('texts.list_of_quotes') }}

@endsection @section('body')
{{ ctrans('texts.with_selected') }}
@csrf
@foreach($quotes as $quote) @endforeach
{{ ctrans('texts.quote_number') }} {{ ctrans('texts.quote_date') }} {{ ctrans('texts.balance') }} {{ ctrans('texts.valid_until') }} {{ ctrans('texts.status') }}
{{ $quote->number }} {{ $quote->formatDate($quote->date, $quote->client->date_format()) }} {{ App\Utils\Number::formatMoney($quote->balance, $quote->client) }} {{ $quote->formatDate($quote->date, $quote->client->date_format()) }} {!! App\Models\Quote::badgeForStatus($quote->status_id) !!} @lang('texts.view')
{{ $quotes->links('portal.ninja2020.vendor.pagination') }}
@endsection @push('footer') @endpush