| {{ $title }} | 
    |  | 
    @if (isset($clients) && $clients && count($clients))
        | {{ strtoupper(trans('texts.clients')) }} | 
        @include('export.clients')
    @endif
    @if (isset($contacts) && $contacts && count($contacts))
        | {{ strtoupper(trans('texts.contacts')) }} | 
        @include('export.contacts')
    @endif
    @if (isset($credits) && $credits && count($credits))
        | {{ strtoupper(trans('texts.credits')) }} | 
        @include('export.credits')
    @endif
    @if (isset($tasks) && $tasks && count($tasks))
        | {{ strtoupper(trans('texts.tasks')) }} | 
        @include('export.tasks')
    @endif
    @if (isset($invoices) && $invoices && count($invoices))
        | {{ strtoupper(trans('texts.invoices')) }} | 
        @include('export.invoices')
    @endif
    @if (isset($quotes) && $quotes && count($quotes))
        | {{ strtoupper(trans('texts.quotes')) }} | 
        @include('export.invoices', ['entityType' => ENTITY_QUOTE])
    @endif
    @if (isset($recurringInvoices) && $recurringInvoices && count($recurringInvoices))
        | {{ strtoupper(trans('texts.recurring_invoices')) }} | 
        @include('export.recurring_invoices', ['entityType' => ENTITY_RECURRING_INVOICE])
    @endif
    @if (isset($payments) && $payments && count($payments))
        | {{ strtoupper(trans('texts.payments')) }} | 
        @include('export.payments')
    @endif
    @if (isset($vendors) && $vendors && count($vendors))
        | {{ strtoupper(trans('texts.vendors')) }} | 
        @include('export.vendors')
    @endif
    @if (isset($vendor_contacts) && $vendor_contacts && count($vendor_contacts))
        | {{ strtoupper(trans('texts.vendor_contacts')) }} | 
        @include('export.vendor_contacts')
    @endif