You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112 |
- @extends('layouts.layout-user')
- @section('content')
- <h1 class="card-title" style="margin-bottom: 0%;">{{$informasis->judul}}</h1>
- <p class="card-text">{{$informasis->kategori}}</p>
- <div>
- <div style="display: flex; justify-content: center; align-items: center; height: 80vh;">
- <a href="{{ asset('foto/' . $informasis->foto) }}" download="Informasi_System.jpg" style="max-width: 400px;">
- <img src="{{ asset('foto/' . $informasis->foto) }}" alt="Foto" style="width: 100%; height: auto; object-fit: cover;">
- </a>
- </div>
- </div>
- @endsection
|