@extends('layouts.participant') @section('title') Logbook @endsection @section('customStyle') @endsection @section('content')
@php $no=1; @endphp @foreach ($data as $item) @endforeach
No Tanggal Judul Foto Status Actions
{{$no++}} {{ \Carbon\Carbon::parse($item->tanggal_logbook)->format('d M Y') }} {{$item->judul_logbook}} @if ($item->status_logbook == 'M') @endif @if ($item->status_logbook == 'S') @endif @if ($item->status_logbook == 'T') @endif
@if ($item->status_logbook == 'M') @endif
@endsection @section('script') @if (Session::has('status') && Session::get('status') == 'logbook-done') @endif @endsection