@extends('layouts.front') @section('title', $matiere->meta_title ?: $matiere->titre) @section('meta_description', $matiere->meta_description ?: $matiere->description) @section('content')
@if($matiere->photo)
{{ $matiere->titre }}
@endif

{{ $matiere->titre }}

@if($matiere->categoriematiere)

Catégorie : {{ $matiere->categoriematiere->titre }}

@endif @if($matiere->description)

Description

{{ $matiere->description }}

@endif @if($matiere->logo) @endif
@if($matiere->coloris->count() > 0)

Coloris disponibles

@foreach($matiere->coloris as $colori)
@if($colori->photo) {{ $colori->titre }} @endif
{{ $colori->titre }}
@endforeach
@endif
@endsection