@extends('layouts.main') @push('styles') @endpush @section('content')

{{ __('payment_items.payment_items') }}

@include('expenses::payment_items.menu')
@include('flash::message')

{{ __('payment_items.export_data_to_csv_excel') }}

@foreach($payment_items as $payment_item) @endforeach
# {{ __('payment_items.name') }} {{ __('payment_items.unit_cost') }} {{ __('payment_items.expense_account') }} {{ __('payment_items.action') }}
# {{ __('payment_items.name') }} {{ __('payment_items.unit_cost') }} {{ __('payment_items.expense_account') }} {{ __('payment_items.action') }}
{{ $payment_item['id'] }} {{ $payment_item['name'] }} {{ $payment_item['unit_cost'] }} {{ get_name($payment_item['account_id'], 'id', 'name', 'chart_of_accounts') }} {{ Form::model($payment_item['id'] ,['method' => 'POST', 'route' => ['payment_items.activate', $payment_item['id']]]) }} {{ Form::close() }}
@endsection @push('scripts') @endpush