@extends('backend.layouts.app') @section('title', 'Expense Head') @section('content')

{{ _trans('common.Expense Head') }}

@foreach ($data['expense_head'] as $key => $item) @endforeach
{{ _trans('common.SL') }} {{ _trans('common.Name') }} {{ _trans('common.Date') }} {{ _trans('common.Action') }}
{{ __(@$key + 1) }} {{ __(Str::limit(@$item->name, 25, '...')) }} {{ main_date_format(@$item->created_at) }}
@endsection @push('js') @include('backend.partials.datatable') @endpush @section('scripts') @endsection