@extends('layouts.admin') @section('title', 'Create Expense') @section('page-title', 'Create Expense') @section('content')
@csrf
@php $defaultCurrency = \App\Models\Currency::getDefaultCode(); $currencies = \App\Models\Currency::where('is_active', true)->orderBy('is_default', 'desc')->orderBy('name')->get(); @endphp
Cancel
@endsection