@extends('layouts.app') @section('title', 'Tambah Transaksi') @section('content')
@csrf @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @php $tipeFixed = $tipe && in_array($tipe, ['pemasukan', 'pengeluaran'], true) ? $tipe : 'pemasukan'; @endphp {{-- Tanggal --}}
{{-- Nama Kategori --}}
{{-- Jumlah --}}
{{-- Satuan --}}
{{-- Harga --}} @if($tipeFixed == 'pemasukan')
@else
@endif {{-- Upload Bukti --}} @if($tipeFixed == 'pengeluaran')
@endif
Batal
@if($tipeFixed == 'pemasukan') @endif @if($tipeFixed == 'pengeluaran') @endif @endsection