infojune/resources/views/softbox.blade.php

15 lines
488 B
PHP

@extends('master')
@section('body')
<div class="softbox center">
<img width="200px" src="{{ $content->img }}" alt="{{ $content->name }} Logo">
<h3>{{ $content->name }}</h3>
<p>{{ $content->description }}</p>
<div class="btn-container-softbox">
@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