mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
18 lines
456 B
PHP
18 lines
456 B
PHP
@extends('portal.ninja2020.layout.app')
|
|
@section('meta_title', ctrans('texts.credits'))
|
|
|
|
@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 flex-col">
|
|
@livewire('credits-table', ['company' => $company])
|
|
</div>
|
|
@endsection |