@extends('admin.layouts.app')
@section('title', 'Data Mata Pelajaran')
@section('breadcrumb')
Data Mata Pelajaran
@endsection
@section('content')
{{-- Notifikasi --}}
@if (session('success'))
{{ session('success') }}
@endif
@if ($errors->any())
{{ $errors->first() }}
@endif
# |
ID |
Nama Mata Pelajaran |
Aksi |
@forelse ($data as $index => $mapel)
{{ $loop->iteration }} |
{{ $mapel->id }} |
{{ $mapel->nama_mapel }} |
|
@empty
Belum ada data mata pelajaran. |
@endforelse
@endsection