infojune/resources/views/softbox.blade.php

25 lines
1009 B
PHP
Raw Normal View History

2020-10-10 12:12:44 +02:00
@extends('master')
@section('body')
2020-10-15 12:23:13 +02:00
<div class="softbox center">
2020-10-27 18:19:58 +01:00
<img width="200px" src="{{ asset('storage/') ,$content->img }}" alt="{{ $content->name }} Logo">
2020-10-10 12:12:44 +02:00
<h3>{{ $content->name }}</h3>
2020-10-26 19:19:18 +01:00
{{ $content->description }}
2020-10-25 18:37:52 +01:00
<p class="licence">{{ $content->licence }}</p>
<p>Créateur(s) / Mainteneur Principal : </p>
@foreach (json_decode($content->creator, true) as $creator)
@foreach (json_decode($content->pubkey, true) as $pubkey)
<a target="_blank" href="https://demo.cesium.app/#/app/wot/{{ $pubkey }}/" class="waves-effect waves-teal btn yellow darken-4" title="Donner à {{ $creator }}">
{{ $creator }}
</a>
@endforeach
@endforeach
<div class="btn-container-softbox sb-btns">
2020-10-15 12:23:13 +02:00
@foreach (json_decode($content->href, true) as $link)
<a class="sb buttons waves-effect waves-light btn-large" target="_blank" href="{{ $link }}"></a>
@endforeach
2020-10-10 12:12:44 +02:00
</div>
</div>
@endsection