@extends('layouts.master') @section('title') {{$title}} @lang('translation.starter') @endsection @section('content') @component('components.breadcrumb') @slot('li_1') Pages @endslot @slot('title') {{$title}} @endslot @endcomponent

List {{ $title }}

@can('kalender_program_ypii_create') Create @endcan
@foreach ($prods as $item) @endforeach
Nama Kegiatan Tanggal Isi Status Action
{{ $item->judul }} {{ date('d-m-Y',strtotime($item->tanggal)) }} @if ($item->status==1) Done @elseif($item->status==2) Draft @else Reschedule @endif
@can('kalender_program_ypii_update') @endcan @can('kalender_program_ypii_publish') @if ($item->status=='publish')
@csrf
@else
@csrf
@endif @endcan @can('kalender_program_ypii_delete')
@csrf @method('DELETE')
@endcan
@endsection @section('script') @endsection