@extends('layouts.admin') @section('title', 'Data Organisasi') @section('content') @if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
{{ $errors->first() }}
@endif
Data Organisasi
@forelse($organisasi as $item) @empty @endforelse
No Nama Organisasi Deskripsi Pembina Ketua Aksi
{{ $loop->iteration }} {{ $item->nama_organisasi }} {{ \Illuminate\Support\Str::limit($item->deskripsi ?? '-', 40) }}
@forelse ($item->pembinaUsers as $pembina) @empty - @endforelse
@forelse ($item->ketuaUsers as $ketua) @empty - @endforelse
Belum ada data organisasi.
@foreach ($organisasi as $item) @endforeach @if ($errors->any()) @endif @endsection