@extends('layouts.main') @section('css') @endsection @section('content') {{-- Header --}} {{-- Content --}}
@if ($guru->count() < 1) Data masih kosong! @else
@foreach ($guru as $item) @endforeach
# Nama L/P NIP NUPTK Aksi
{{ $loop->iteration }} {{ $item->user->name }} {{ $item->user->jk == 'laki-laki' ? 'L' : 'P' }} {{ $item->nip }} {{ $item->nuptk }}
@endif
@endsection @section('js') @endsection