@extends('layouts.app') @section('title', 'Data Montir') @section('page-title', 'Data Montir') @section('content')
Daftar Montir Tambah Montir
@forelse($montir as $index => $item) @empty @endforelse
# Nama Email No. Telepon Status Bergabung Aksi
{{ $montir->firstItem() + $index }} {{ $item->name }} {{ $item->email }} {{ $item->no_telepon ?? '-' }} @if($item->status === 'aktif') Aktif @else Suspend @endif {{ $item->created_at->format('d M Y') }}
@csrf @method('PATCH')
@csrf @method('DELETE')
Belum ada data montir
{{ $montir->links() }}
@endsection