@extends('layouts.app') @section('title', 'Prodi') @section('title_header', 'Prodi') @section('desc_header', 'Master Data / Prodi') @section('btnAdd') Tambah Prodi @endsection @section('modal')
@endsection @section('content')

Data Prodi

@php // $no = 1; $page = isset($_GET['page']) ? $_GET['page'] : 1; $page_length = isset($_GET['page_length']) ? $_GET['page_length'] : 5; $i = $page == 1 ? 1 : $page * $page_length - $page_length + 1; @endphp @foreach ($prodi as $item) @endforeach
# Kode Prodi Nama Prodi Nama Jurusan Aksi
{{ $i++ }} {{ $item->kode_prodi }} {{ $item->nama }} {{ $item->jurusan->nama }} Edit
@endsection @push('extraScript') @endpush