@extends('layouts.app') @section('content')
| Bulan | Tahun | Data |
|---|---|---|
| {{$bulan_nama}} | {{$tahunaktif}} |
@php
$row = \App\Models\Ksp\Pn\Input::where('bulan', $bulan)->where('tahun', $tahunaktif)->where('satker_id', auth()->user()->satker_id)->get();
@endphp
@if($row->count() > 0)
@else
@endif
|