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/main.blade.php
2021-03-21 08:27:24 +01:00

16 lines
539 B
PHP

@extends('layouts.default')
@section('content')
<p>Är ordet:</p>
<h1 class="mb-5">{{ $word }}</h1>
<div class="d-flex justify-content-center">
<div class="mr-2">
<a class="btn btn-block btn-lg btn-info" href="{{ route("word", ['uuid' => $uuid, 'guess' => 'sex'] ) }}">Sex-ställning</a>
</div>
<div class="ml-2">
<a class="btn btn-block btn-lg btn-info" href="{{ route("word", ['uuid' => $uuid, 'guess' => 'yoga'] ) }}">Yoga-övning</a>
</div>
</div>
@endsection