@extends('layouts.app') @section('content')
Articulos
@foreach ($articles as $article) @endforeach
Categoria Marca Nombre Precios Opciones
{{ $article->category ? $article->category->name : '-' }} {{ $article->mark ? $article->mark->name : '-' }} {{ $article->type->name . ' ' . $article->description }} {{ $article->prices->last() ? $article->prices->last()->price . '€' : '-' }} @if ($article->category_id == 2) @endif
@endsection