LaravelTest
25 строк · 739.0 Байт
1@extends('layouts.main')
2
3@section('content')
4<div class="card-header">
5<a href="{{ route('categories.create') }}" class="btn btn-primary">Добавить</a>
6<table id="example" class="table table-striped table-bordered" style="width:100%">
7<thead>
8<tr>
9<th>ID</th>
10<th>Наименование</th>
11
12</tr>
13</thead>
14<tbody>
15@foreach ($categories as $category)
16<tr>
17<td>{{ $category->id }}</td>
18<td><a href="{{route('categories.show', $category->id )}}">{{$category->title}}</a></td>
19
20@endforeach
21</tr>
22</tbody>
23</div>
24
25@endsection