@extends('layouts.compact_menu') {{-- Page title --}} @section('title') Invoice @parent @stop @section('header_styles') @stop @section('content')
@include('flash::message')
Filter
Invoice : {{$request->date}}
@csrf
@if(isset($data['head'])) @foreach(json_decode($data['head']->data) as $h) @endforeach @foreach($data['body'] as $b) @php $kd = 0; @endphp @foreach(json_decode($b->data) as $d) @php $kd++; @endphp @endforeach @endforeach
{{$h}}
{!! html_entity_decode($d) !!}
@else
Data is not available.
@endif
@endsection @section('footer_scripts') @stop