@extends('layouts.admin')
@section('title', 'Fasilitas Sekolah – Admin')
@section('admin-content')
| Gambar | Nama | Deskripsi | Urutan | Aksi |
@forelse($items as $item)
@if($item->gambar)
@else
Tidak ada
@endif
|
{{ $item->nama }} |
{{ \Illuminate\Support\Str::limit($item->deskripsi, 80) }} |
{{ $item->urutan }} |
|
@empty
| Belum ada data. |
@endforelse
@endsection