infojune/resources/views/softbox.blade.php

25 lines
1009 B
PHP

@extends('master')
@section('body')
<div class="softbox center">
<img width="200px" src="{{ asset('storage/') ,$content->img }}" alt="{{ $content->name }} Logo">
<h3>{{ $content->name }}</h3>
{{ $content->description }}
<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">
@foreach (json_decode($content->href, true) as $link)
<a class="sb buttons waves-effect waves-light btn-large" target="_blank" href="{{ $link }}"></a>
@endforeach
</div>
</div>
@endsection