@extends('layouts.app')
@section('site-name','Sistem Informasi SPP')
@section('page-name','Periode')
@section('content')
No. |
Nama |
Tanggal Mulai |
Tanggal Selesai |
Aktif |
|
@foreach ($periode as $item)
{{ $item->id }} |
{{ $item->nama }} |
{{ $item->tgl_mulai }}
|
{{ $item->tgl_selesai }}
|
{{ $item->is_active }}
|
|
@endforeach
@endsection