@extends('layouts.app') @section('page_title', 'Data Guru') @section('content') @include('admin.partials.crud-table', [ 'title' => 'Guru', 'headers' => ['NIP', 'Nama', 'Jabatan', 'JK', 'Telepon', 'Status'], 'columns' => ['nip', 'nama', 'jabatan', 'jenis_kelamin', 'telepon', 'status'], 'rows' => $data, 'primaryKey' => 'id_guru', 'storeRoute' => 'admin.data.guru.store', 'updateRoute' => 'admin.data.guru.update', 'deleteRoute' => 'admin.data.guru.destroy', 'fields' => [ ['name' => 'nip', 'label' => 'NIP', 'type' => 'text'], ['name' => 'nuptk', 'label' => 'NUPTK', 'type' => 'text'], ['name' => 'nama', 'label' => 'Nama Lengkap', 'type' => 'text', 'required' => true], ['name' => 'jabatan', 'label' => 'Jabatan', 'type' => 'text'], ['name' => 'jenis_kelamin', 'label' => 'Jenis Kelamin', 'type' => 'select', 'options' => [['v'=>'Laki-Laki','l'=>'Laki-Laki'],['v'=>'Perempuan','l'=>'Perempuan']], 'optionValue' => 'v', 'optionLabel' => 'l'], ['name' => 'telepon', 'label' => 'Telepon', 'type' => 'text'], ['name' => 'alamat', 'label' => 'Alamat', 'type' => 'textarea'], ['name' => 'status', 'label' => 'Status', 'type' => 'text'], ['name' => 'tgl_lahir', 'label' => 'Tanggal Lahir', 'type' => 'date'], ], ]) @endsection