You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.9 KiB
46 lines
1.9 KiB
@extends('layouts.dashboard')
|
|
|
|
@section('content')
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<a href="{{ route('marca.create') }}" class="btn btn-primary">Agregar Marca</a>
|
|
</div>
|
|
<div class="card">
|
|
<div class="card-header">
|
|
<h3 class="card-title">Lista de Marcas</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Nombre</th>
|
|
<th>Acciones</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($marcas as $marca)
|
|
<tr>
|
|
<td>{{ $marca->id }}</td>
|
|
<td>{{ $marca->nombre }}</td>
|
|
<td>
|
|
<a href="{{ route('marca.edit', $marca->id) }}" class="btn btn-primary btn-sm">Editar</a>
|
|
<form action="{{ route('marca.destroy', $marca->id) }}" method="POST" style="display:inline-block;">
|
|
@csrf
|
|
@method('DELETE')
|
|
<button type="submit" class="btn btn-danger btn-sm">Eliminar</button>
|
|
</form>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
@endsection
|
|
|