mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
16 lines
388 B
PHP
16 lines
388 B
PHP
|
@extends('portal.ninja2020.layout.app')
|
||
|
@section('meta_title', ctrans('texts.downloads'))
|
||
|
|
||
|
@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')
|
||
|
@livewire('downloads-table')
|
||
|
@endsection
|