@extends('model.list') @include('web::sidebar') @section('breadcrumb') Inicio Administración de Ubicaciones @endsection @section('card-title', 'Listado de Ubicaciones') @section('table-header') ID Nombre Slug Web Acciones @endsection @section('table-body') @forelse($data as $row) {{ $row->id }} {{ $row->name }} {{ $row->slug }} @if ($row->is_enabled) Si @else No @endif @empty

Sin datos para esta selección.

@endforelse @endsection