@extends('layouts.app') @section('page-title', 'Expense Types') @section('content')

Expense Types

@forelse($expenseTypes as $type) @empty @endforelse
Name Type Actions
{{ $type->name }} @if($type->is_system) System @else Custom @endif @if(!$type->is_system || $type->user_id === auth()->id()) Edit
@csrf @method('DELETE')
@else System Type @endif
No expense types found.
@endsection