1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
sexelleryoga/resources/views/result.blade.php
2021-03-21 08:27:24 +01:00

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