@extends('layouts.app', ['class' => 'g-sidenav-show bg-gray-100']) @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'My Tests'])
My Test List
{{-- @foreach ($tags as $tag) @endforeach --}}
@isset($tests) @foreach ($tests as $test)
test image
{{ $test->titre }}
Author: {{ $test->owner->username }}
Description: @if ($test->description > 50) {{ substr($test->description, 0, 25) }}... @else {{ $test->description }} @endif
@endforeach @endisset
@endsection