mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
2b39c1a5d7
- Change ClientPortal helper to return 'bg-primary-darken' instead of 'active-page' - Buttons & input fields don't have SASS color now - bg-blue-600/900 replaced with primary/primary-darken - Production build of assets
26 lines
897 B
PHP
26 lines
897 B
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>
|
|
<button type="submit" class="button button-primary bg-primary" name="action" value="payment">{{ ctrans('texts.pay_now') }}</button>
|
|
</form>
|
|
</div>
|
|
<div class="flex flex-col mt-4">
|
|
@livewire('invoices-table')
|
|
</div>
|
|
@endsection
|