|
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/transaction_payment/ |
Upload File : |
@extends('layouts.app')
@section('title', 'Brands')
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>@lang( 'brand.brands' )
<small>@lang( 'brand.manage_your_brands' )</small>
</h1>
<!-- <ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
<li class="active">Here</li>
</ol> -->
</section>
<!-- Main content -->
<section class="content">
<div class="box">
<div class="box-header">
<h3 class="box-title">@lang( 'brand.all_your_brands' )</h3>
@can('brand.create')
<div class="box-tools">
<button type="button" class="btn btn-block btn-primary btn-modal"
data-href="{{action([\App\Http\Controllers\BrandController::class, 'create'])}}"
data-container=".brands_modal">
<i class="fa fa-plus"></i> @lang( 'messages.add' )</button>
</div>
@endcan
</div>
<div class="box-body">
@can('brand.view')
<table class="table table-bordered table-striped" id="brands_table">
<thead>
<tr>
<th>@lang( 'brand.brands' )</th>
<th>@lang( 'brand.note' )</th>
<th>@lang( 'messages.action' )</th>
</tr>
</thead>
</table>
@endcan
</div>
</div>
<div class="modal fade brands_modal" tabindex="-1" role="dialog"
aria-labelledby="gridSystemModalLabel">
</div>
</section>
<!-- /.content -->
@endsection