@extends('admin.layouts.master') @section('page-title', 'Teknologi') @section('content')

Daftar Teknologi

Tambah Teknologi
@forelse($technologies as $index => $technology) @empty @endforelse
No Nama Icon Deskripsi Urutan Status Aksi
{{ $index + 1 }} {{ $technology->name }}
{{ $technology->slug }}
@if($technology->icon) {{ $technology->icon }} @else Tidak ada @endif {{ \Illuminate\Support\Str::limit($technology->description, 80) ?: '-' }} {{ $technology->order ?? '-' }} {{ $technology->is_active ? 'Aktif' : 'Nonaktif' }}
@csrf @method('DELETE')
Belum ada teknologi
@endsection