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