mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
29 lines
1.0 KiB
PHP
29 lines
1.0 KiB
PHP
@extends('portal.ninja2020.layout.app')
|
|
@section('meta_title', ctrans('texts.invoices'))
|
|
|
|
@section('header')
|
|
@if($errors->any())
|
|
<div class="alert alert-failure mb-4">
|
|
@foreach($errors->all() as $error)
|
|
<p>{{ $error }}</p>
|
|
@endforeach
|
|
</div>
|
|
@endif
|
|
@endsection
|
|
|
|
@section('body')
|
|
<div class="flex items-center">
|
|
<form action="{{ route('client.invoices.bulk') }}" method="post" id="bulkActions">
|
|
@csrf
|
|
<button type="submit" class="button button-primary bg-primary" name="action" value="download">{{ ctrans('texts.download') }}</button>
|
|
|
|
@if(!empty(auth()->user()->client->service()->getPaymentMethods(0)))
|
|
<button type="submit" class="button button-primary bg-primary" name="action" value="payment">{{ ctrans('texts.pay_now') }}</button>
|
|
@endif
|
|
</form>
|
|
</div>
|
|
<div class="flex flex-col mt-4">
|
|
@livewire('invoices-table', ['company' => $company])
|
|
</div>
|
|
@endsection
|