2020-08-14 17:29:26 +02:00
|
|
|
@extends('portal.ninja2020.layout.app')
|
2020-09-28 11:45:22 +02:00
|
|
|
@section('meta_title', ctrans('texts.documents'))
|
2020-08-14 17:29:26 +02:00
|
|
|
|
|
|
|
@section('header')
|
2020-08-19 16:35:54 +02:00
|
|
|
@if($client->getSetting('client_portal_enable_uploads'))
|
|
|
|
@component('portal.ninja2020.upload.index') @endcomponent
|
|
|
|
@endif
|
2020-08-20 03:10:04 +02:00
|
|
|
|
|
|
|
<script src="{{ asset('js/clients/shared/multiple-downloads.js') }}"></script>
|
2020-08-14 17:29:26 +02:00
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('body')
|
2020-09-28 12:04:34 +02:00
|
|
|
<form action="{{ route('client.documents.download_multiple') }}" method="post" id="multiple-downloads">
|
2020-08-20 03:10:04 +02:00
|
|
|
@csrf
|
|
|
|
</form>
|
2020-09-28 12:04:34 +02:00
|
|
|
@livewire('documents-table', ['client' => $client])
|
2020-08-14 17:29:26 +02:00
|
|
|
@endsection
|