@extends('user.template')
@section('title', $title)
@section('head')
@endsection
@section('content')
{{ $title }}
{{ $title }} {{ $data->periode }}
{{ $title }}
{{ $data->entitas }}
Periode
{{ $data->periode }}
{{ Auth::user()->nama }}
Program
@if ($data->program == 'null')
Silahkan Hapus Renja Ini Karena Tidak Sesuai Prosedur
@else
@foreach (json_decode($data->program) as $program)
- {{ $program }}
@endforeach
@endif
Kegiatan Renja
| No |
Kegiatan |
Target |
|
@foreach ($kegiatans as $noKegiatan => $kegiatan)
| {{ $noKegiatan + 1 }} |
{{ $kegiatan->kegiatan }} |
{{ $kegiatan->peserta }} |
Hapus
|
@endforeach
@endsection
@section('script')
@endsection