@extends('user.template-user') @section('title','Home') @section('head') @endsection @section('content')
{{$title}}
@foreach ($users as $no => $user) @endforeach
No Nama NIP Pangkat Jabatan
{{$no+1}} {{$user->nama}} {{$user->nip}} {{$user->pangkat}} {{$user->jabatan}}
@endsection @section('script') @endsection