@extends('layouts.app')
@section('title')
Voir un tag
@endsection
@section('page-title')
Tags Voir : {{ $tag->name }}
@endsection
@section('button-top')
@include('tags.delete_modal', ['tag' => $tag])
@endsection
@section('content')
Tag
Nom : {{ $tag->name }}
Tag créée le {{ $tag->created_at->format('d/m/Y') }} par {{ $tag->creator->prenom_nom }}.
Comptes avec le tag « {{ $tag->name }} »
@if (count($tag->comptes) != 0)
@foreach ($tag->comptes as $compte)
- {{ $compte->id }} - {{ $compte->name }}
@endforeach
@else
Aucun compte
@endif
Consultations avec le tag « {{ $tag->name }} »
@if (count($tag->consultations) != 0)
@foreach ($tag->consultations as $consultations)
- {{ $consultations->id }} - {{ $consultations->title }}
@endforeach
@else
Aucune consultation
@endif
@endsection