mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
17 lines
531 B
PHP
17 lines
531 B
PHP
@extends('portal.ninja2020.layout.app')
|
|
@section('meta_title', ctrans('texts.downloads'))
|
|
|
|
@section('header')
|
|
@if($client->getSetting('client_portal_enable_uploads'))
|
|
@component('portal.ninja2020.upload.index') @endcomponent
|
|
@endif
|
|
|
|
<script src="{{ asset('js/clients/shared/multiple-downloads.js') }}"></script>
|
|
@endsection
|
|
|
|
@section('body')
|
|
<form action="{{ route('client.downloads.multiple') }}" method="post" id="multiple-downloads">
|
|
@csrf
|
|
</form>
|
|
@livewire('downloads-table')
|
|
@endsection |