@extends('admin.master') @section('title', isset($title) ? $title : '') @section('style') @endsection @section('sidebar') @include('admin.gift_card.sidebar.sidebar', ['menu' => 'dashboard']) @endsection @section('content')
  • {{ __('Dashboard') }}

{{ __('Total Gift Card') }}

{{ $total_card ?? 0 }}

{{ __('Total Redeemed Gift Card') }}

{{ $total_card_redeem ?? 0 }}

{{ __('Total Active Gift Card') }}

{{ $total_card_active ?? 0 }}

{{ __('Total Locked Gift Card') }}

{{ $total_card_lock ?? 0 }}

{{ __('Total Transferred Gift Card') }}

{{ $total_card_transfer ?? 0 }}

{{ __('Active Trading Gift Card') }}

{{ $total_card_trading ?? 0 }}

@endsection @section('script') @endsection