infojune/resources/views/softbox.blade.php

12 lines
398 B
PHP

@extends('master')
@section('body')
<div id="softbox">
<img width="200px" src="{{ $content->img }}" alt="{{ $content->name }} Logo">
<h3>{{ $content->name }}</h3>
<p>{{ $content->description }}</p>
<div class="btn-container-softbox">
<a class="sb button buttons" v-for="item in href_array" :key="item" target="_blank" :href="item"></a>
</div>
</div>
@endsection