mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
27 lines
928 B
PHP
27 lines
928 B
PHP
@extends('portal.ninja2020.layout.app')
|
|
@section('meta_title', ctrans('texts.quotes'))
|
|
|
|
@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 justify-between items-center">
|
|
<form action="{{ route('client.quotes.bulk') }}" method="post" id="bulkActions">
|
|
@csrf
|
|
<button type="submit" class="button button-primary" name="action"
|
|
value="download">{{ ctrans('texts.download') }}</button>
|
|
<button type="submit" class="button button-primary" name="action"
|
|
value="approve">{{ ctrans('texts.approve') }}</button>
|
|
</form>
|
|
</div>
|
|
<div class="flex flex-col mt-4">
|
|
@livewire('quotes-table')
|
|
</div>
|
|
@endsection |