@extends('admin.layouts.app') @section('content')

{{$title}}

{{$subtitle}} {{$title}}
@foreach ($products as $product) {{-- --}} @endforeach
Imagen ID Nombre Link Estado Acciones
@php $slug = \Illuminate\Support\Str::slug($product->name, '_'); // Llamada directa sin "use" @endphp {{$product->name}}{{$product->description}} @if ($product->status) Activo @else Inactivo @endif
Anterior
    {{-- Renderiza los enlaces de paginación de Laravel aquí --}} @foreach ($products->links()->elements as $key => $element) @if (is_string($element))
  • {{ $element }}
  • @endif @if (is_array($element)) @foreach ($element as $page => $url) @if ($page == $products->currentPage())
  • {{ $page }}
  • @else
  • {{ $page }}
  • @endif @endforeach @endif @endforeach
Siguiente
@section('scripts') {{-- !-- list.js min js --> --}} {{-- eliminar service --}} {{-- copiar link --}} @endsection @endsection