@extends('layouts.main') @section('page-style') @stop @section('page-script') {{-- page scripts --}} @stop @section('content')

@include('layouts.notifications')
Filter
@if(empty($report))
Data not found
@else {{-- Date Range --}} @php if ($filter['time_type']=='month') { $date_range = date('F', strtotime($filter['param1'])) ." - ". date('F', strtotime($filter['param2'])) ." ". $filter['param3']; } elseif ($filter['time_type']=='year') { $date_range = $filter['param1'] ." - ". $filter['param2']; } else { $date_range = date('d M Y', strtotime($filter['param1'])) ." - ". date('d M Y', strtotime($filter['param2'])); } @endphp {{-- Transaction --}} @include('report::single_report._transaction') {{-- Product --}} @include('report::single_report._product') {{-- Customer Registration --}} @include('report::single_report._registration') {{-- Customer Membership --}} @include('report::single_report._membership') {{-- Voucher Redemption --}} @include('report::single_report._voucher_redemption') @endif @stop