|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/resources/views/expense_category/ |
Upload File : |
@extends('layouts.app')
@section('title', __('expense.expense_categories'))
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>@lang( 'expense.expense_categories' )
<small>@lang( 'expense.manage_your_expense_categories' )</small>
</h1>
</section>
<!-- Main content -->
<section class="content">
@component('components.widget', ['class' => 'box-primary', 'title' => __( 'expense.all_your_expense_categories' )])
@slot('tool')
<div class="box-tools">
<button type="button" class="btn btn-block btn-primary btn-modal"
data-href="{{action([\App\Http\Controllers\ExpenseCategoryController::class, 'create'])}}"
data-container=".expense_category_modal">
<i class="fa fa-plus"></i> @lang( 'messages.add' )</button>
</div>
@endslot
<div class="table-responsive">
<table class="table table-bordered table-striped" id="expense_category_table">
<thead>
<tr>
<th>@lang( 'expense.category_name' )</th>
<th>@lang( 'expense.category_code' )</th>
<th>@lang( 'messages.action' )</th>
</tr>
</thead>
</table>
</div>
@endcomponent
<div class="modal fade expense_category_modal" tabindex="-1" role="dialog"
aria-labelledby="gridSystemModalLabel">
</div>
</section>
<!-- /.content -->
@endsection