@extends('layouts.app') @section('title', $title) @section('subtitle', $subtitle) @push('css') @endpush @section('content')

{{ $title }}

@can('transactioncategory-create') @endcan
@if(session('success'))
{{ session('success') }}
@endif @foreach ($data_transaction_categories as $p) @endforeach
No Nama Kategori Transaksi Type Deskripsi Action
{{ $loop->iteration }} {{ $p->name }} @if($p->parent_type == 'tambah') {{ $p->parent_type }} @else {{ $p->parent_type }} @endif {{ $p->description ?: 'No Data' }} Show @can('transactioncategory-edit') Edit @endcan @can('transactioncategory-delete') @endcan
@endsection @push('script') @endpush