@extends('layouts.master')
@section('title') {{$title}} @lang('translation.starter') @endsection
@section('content')
@component('components.breadcrumb')
@slot('li_1') Pages @endslot
@slot('title') {{$title}} @endslot
@endcomponent
Nama |
Tanggal Awal |
Tanggal Akhir |
Status |
@can('tahun_ajaran_update')
Edit |
@endcan
@can('tahun_ajaran_delete')
Delete |
@endcan
@foreach ($prods as $item)
{{ $item->nama }} |
{{ $item->tanggal_awal }} |
{{ $item->tanggal_akhir }} |
@if ($item->status==1)
Aktif
@else
Non-Aktif
@endif
|
@can('tahun_ajaran_update')
|
@endcan
@can('tahun_ajaran_delete')
|
@endcan
@endforeach
@endsection
@section('script')
@endsection