infojune/resources/views/softbox.blade.php

15 lines
488 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-10 12:12:44 +02:00
<img width="200px" src="{{ $content->img }}" alt="{{ $content->name }} Logo">
<h3>{{ $content->name }}</h3>
<p>{{ $content->description }}</p>
<div class="btn-container-softbox">
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