@extends('layouts.master') @section('title') {{translate('other_income')}} @endsection @section('content')
{{translate('other_income')}}
@if(Sentinel::hasAccess('other_income.create')) {{translate('add other_income')}} @endif
@forelse($data as $index=>$key) @empty @endforelse
# {{translate('income type')}} {{translate('amount')}} {{translate('date')}} {{translate('description')}} {{translate('file')}} {{ translate('action') }}
{{$index+1}} @if(!empty($key->other_income_type)) {{$key->other_income_type->name}} @endif {{ currency_converter($key->amount) }} {{ $key->date }} {{ $key->notes }}
    @if($key->files) @foreach(unserialize($key->files) as $k=>$value)
  • {!! $value!!}
  • @endforeach @endif
{{ translate('zeroRecords') }}
{{ $data->withQueryString()->links() }}
@endsection @section('footer-scripts') @endsection