10 lines
425 B
PHP
10 lines
425 B
PHP
@extends('layouts.default')
|
|
|
|
@section('content')
|
|
<p>
|
|
Är ordet <strong>{{ $word }}</strong> en <strong>{{ $guess == 'sex' ? 'sex-ställning' : 'yoga-övning' }}</strong>?
|
|
</p>
|
|
|
|
<h1 class="mb-5 {{ $correct ? 'text-success' : 'text-danger' }}"><strong>{{ $correct ? 'Ja!' : 'Nej!' }}</strong></h2>
|
|
<a href="{{ route("word", ['uuid' => $next ]) }}" class="btn btn-lg btn-info">Nästa ord</a>
|
|
@endsection
|