@extends('layouts.app') @section('content-header')

{{$title}}

{{ Breadcrumbs::render('reports-page', $title) }}
@endsection @section('content')
@if ($type == 'best_seller') @include('reports.best_seller.index') @elseif ($type == 'best_spender') @include('reports.best_spender.index') @elseif ($type == 'birthday_list') @include('reports.birthday_list.index') @elseif ($type == 'loyalty_transaction') @include('reports.loyalty_transaction.index') @elseif ($type == 'sales_transaction') @include('reports.sales_transaction.index') @elseif ($type == 'blacklist') @include('reports.blacklist.index') @elseif ($type == 'point_expired') @include('reports.point_expired.index') @elseif ($type == 'customer_performance') @include('reports.customer_performance.index') @endif
@endsection