mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-11-04 01:27:31 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			598 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			598 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
@extends('portal.ninja2020.layout.app')
 | 
						|
@section('meta_title', ctrans('texts.documents'))
 | 
						|
 | 
						|
@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.documents.download_multiple') }}" method="post" id="multiple-downloads">
 | 
						|
        @csrf
 | 
						|
    </form>
 | 
						|
    
 | 
						|
    @livewire('documents-table', ['client_id' => $client->id, 'db' => $company->db])
 | 
						|
@endsection
 |