@extends('guest.layouts.app')
@section('content')
{{--
--}}
| Kegiatan |
{{ $data->judul ?? '-' }} |
| Tanggal |
{{ tanggal_indo($data->tanggal_publish) }} |
| Deskripsi |
{{ $data->deskripsi ?? '-' }} |
Foto Kegiatan
@if ($foto->isNotEmpty())
@foreach ($foto as $res)
 : asset('default.jpg') }})
@endforeach
@else
Belum Ada Data
@endif
@endsection