@extends('layouts.dashboard') @section('breadcrumb') @endsection @section('content')
{{ __('Tambah SPP') }}
@csrf
@error('tahun') {{ $message }} @enderror
@error('nominal') {{ $message }} @enderror
Data SPP
@php $i=1; @endphp @foreach($spp as $value) @php $i++; @endphp @endforeach
# TAHUN NOMINAL DIBUAT
{{ $i }} {{ $value->tahun }} {{ $value->nominal }} {{ $value->created_at->format('d M, Y') }}
@if($spp->lastPage() != 1)
@for($i = 1; $i <= $spp->lastPage(); $i++) {{ $i }} @endfor
@endif @if(count($spp) == 0)
Tidak ada data!
@endif
@endsection @section('sweet') function deleteData(id){ Swal.fire({ title: 'PERINGATAN!', text: "Yakin ingin menghapus data SPP?", icon: 'warning', showCancelButton: true, confirmButtonColor: '#3085d6', cancelButtonColor: '#d33', confirmButtonText: 'Yakin', cancelButtonText: 'Batal', }).then((result) => { if (result.value) { $('#delete'+id).submit(); } }) } @endsection