@extends('app') @section('title', 'designations') @section('content')

Form Wizard

{{-- modal close --}}
@if(Session::has('response')) {!!Session::get('response')['message']!!} @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- --}} @forelse ($costs as $c) @empty @endforelse
#SL Name of Cost Voucher No Description Amount Month name Date Inserted AtAction
{{ ++$loop->index }} {{ $c?->type->bill_name }} {{$c->voucher_no ?? ''}} {{$c?->description}} {{$c?->amount}} {{ $c?->billing_month ?? '' }} {{$c?->billing_date}} {{$c?->created_at}}
{{__('No data founds!')}}
@endsection