@extends('layouts.panel.admin') @section('main')
Serviço
Criar
Image Vídeo Nome Price Dono Categoria Acção @foreach ($products as $product) @php $url = asset("storage/{$product->image}"); @endphp @if (filter_var($url, FILTER_VALIDATE_URL)) @else Indefinido @endif @php $url = asset("storage/{$product->video}"); @endphp @if (filter_var($url, FILTER_VALIDATE_URL)) @else Indefinido @endif {{ $product->name }} {{ $product->price }} {{ $product->user->name ?? '-' }} {{ $product->category->name ?? '-' }} editar eliminar @endforeach
{{ $products->links() }}
@endsection