Lager-v3/resources/views/categories/index.blade.php

42 lines
1.3 KiB
PHP

@extends('Layouts.master')
@section('content')
<div class="main-container pb-4">
@include('Partials.Pages.index_top')
<table class="table table-striped">
<thead>
<th>@lang('name')</th>
<th>@lang('action')</th>
</thead>
<tbody>
@foreach($data as $category)
<tr>
<td class="align-middle">
@can('categories_view')
<a href="{{route('categories.show',['category' => $category])}}" class="btn btn-success">
{{$category->name}}
</a>
@else
{{$category->name}}
@endcan
</td>
<td>
@can('categories_edit')
<a href="{{route('categories.edit',['category' => $category])}}"
class="btn btn-outline-success">
@lang('edit')
</a>
@endcan
</td>
</tr>
@endforeach
</tbody>
</table>
@include('Partials.Pages.display')
</div>
@endsection
@section('scripting')
@endsection