@extends('dompdf.LayoutBoostrapOnly')
@section('content')
@php
$check_count = 0;
@endphp
@foreach($datalist as $key => $value)
@if ($check_count == 0 || $check_count == 2 )
@endif
{{ $value->invoice_number }}
@if ($check_count == 1 || $check_count == 3 )
@endif
@if ($check_count == 3)
@php
$check_count = 0;
@endphp
@else
@php
$check_count++;
@endphp
@endif
@endforeach
@endsection