Created
December 6, 2019 20:59
-
-
Save NandoKstroNet/41b7bc0c95b2e04ecec7274eb6206e05 to your computer and use it in GitHub Desktop.
Listagem de categorias curso Laravel 6 Criando um Marketplace em http://codeexperts.com.br
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('layouts.app') | |
@section('content') | |
<a href="{{route('admin.categories.create')}}" class="btn btn-lg btn-success">Criar Categoria</a> | |
<table class="table table-striped"> | |
<thead> | |
<tr> | |
<th>#</th> | |
<th>Nome</th> | |
<th>Ações</th> | |
</tr> | |
</thead> | |
<tbody> | |
@foreach($categories as $category) | |
<tr> | |
<td>{{$category->id}}</td> | |
<td>{{$category->name}}</td> | |
<td width="15%"> | |
<div class="btn-group"> | |
<a href="{{route('admin.categories.edit', ['category' => $category->id])}}" class="btn btn-sm btn-primary">EDITAR</a> | |
<form action="{{route('admin.categories.destroy', ['category' => $category->id])}}" method="post"> | |
@csrf | |
@method("DELETE") | |
<button type="submit" class="btn btn-sm btn-danger">REMOVER</button> | |
</form> | |
</div> | |
</td> | |
</tr> | |
@endforeach | |
</tbody> | |
</table> | |
@endsection |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment