@extends('layouts.app') @section('page_title', 'Jam Ngajar') @section('content') @include('admin.partials.crud-table', [ 'title' => 'Jam Mengajar', 'headers' => ['Jam', 'ID Pelajaran', 'ID Guru', 'ID Kelas'], 'columns' => ['jam', 'id_pelajaran', 'id_guru', 'id_kelas'], 'rows' => $data, 'primaryKey' => 'id_jam_mengajar', 'storeRoute' => 'admin.data.jam_ngajar.store', 'updateRoute' => 'admin.data.jam_ngajar.update', 'deleteRoute' => 'admin.data.jam_ngajar.destroy', 'fields' => [ ['name' => 'jam', 'label' => 'Jam', 'type' => 'text', 'required' => true], ['name' => 'id_pelajaran', 'label' => 'Pelajaran', 'type' => 'select', 'options' => $pelajaran, 'optionValue' => 'id_pelajaran', 'optionLabel' => 'mata_pelajaran', 'required' => true], ['name' => 'id_guru', 'label' => 'Guru', 'type' => 'select', 'options' => $guru, 'optionValue' => 'id_guru', 'optionLabel' => 'nama', 'required' => true], ['name' => 'id_kelas', 'label' => 'Kelas', 'type' => 'select', 'options' => $kelas, 'optionValue' => 'id_kelas', 'optionLabel' => 'nama_kelas', 'required' => true], ], ]) @endsection