@extends('admin.layouts.master') @section('breadcrumb')

Store

@stop @section('content')
{{ ucfirst($store->name) }}
View Logs View Configured Data Events @if(env('APP_ENV') != 'production') @endif
{{-- --}}
Shop Name
{{ $store->name }}
Shop Owner
{{ $store->shop_owner }}
MyShopify Domain
{{ $store->myshopify_domain }}
Domain
{{ $store->domain }}
Status
@if(!$store->is_deleted) Active @else Inactive @endif
Owner Email
{{ $store->email }}
User Plan
{{ ucfirst($store->current_plan_type ?? "N/A") }}
First Installation DateTime
{{ $store->created_at }}
Uninstalled At
@if($store->uninstalled_at) {{ $store->uninstalled_at }} @endif
Total Registered Channels
{{ $store->registeredEventsAndChannels ->groupBy('channel_id') ->count() }}
Active Channels
{{ $store->registeredEventsAndChannels ->where('status',1) ->groupBy('channel_id') ->count() }}
Address
{{ $store->address}}
Total Registered Events
{{ $store->registeredEventsAndChannels ->count() }}
Active Events
{{ $store->registeredEventsAndChannels->where('status',1)->count() }}