@extends('portal.ninja2020.layout.app') @section('meta_title', ctrans('texts.invoices')) @section('header') @if($errors->any())
@foreach($errors->all() as $error)

{{ $error }}

@endforeach
@endif @endsection @section('body')
@csrf @csrf @if(!empty(auth()->user()->client->service()->getPaymentMethods(0))) @endif
@livewire('invoices-table', ['company_id' => $company->id, 'db' => $company->db])
@endsection