@extends('layouts.panel.admin') @section('main')
Categoria
Criar
Image Nome Código Tipo Acção @foreach ($categories as $category) @php $url = asset("storage/{$category->icon}"); @endphp @if (filter_var($url, FILTER_VALIDATE_URL)) @else Indefinido @endif {{ $category->name }} {{ $category->code ?? '-' }} {{ $category->type ?? '-' }} editar eliminar @endforeach
{{ $categories->links() }}
@endsection