Skip to content

Instantly share code, notes, and snippets.

@NandoKstroNet
Created December 6, 2019 20:59
Show Gist options
  • Save NandoKstroNet/41b7bc0c95b2e04ecec7274eb6206e05 to your computer and use it in GitHub Desktop.
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
@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