ultimatepos/resources/views/transaction_payment/index.blade.php

55 lines
1.7 KiB
PHP

@extends('layouts.app')
@section('title', 'Brands')
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header">
<h1 class="tw-text-xl md:tw-text-3xl tw-font-bold tw-text-black">@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