@extends('layouts.app') @section('title', __('superadmin::lang.superadmin') . ' | Business') @section('content') @include('superadmin::layouts.nav')

@lang('superadmin::lang.view_business') {{ $business->name }}

{{ $business->name }}
@lang('business.business_name')

{{ $business->name }}

@lang('business.currency')

{{ $business->currency->currency }}

@lang('business.tax_number1')

@if (!empty($business->tax_number_1)) {{ $business->tax_label_1 }}: {{ $business->tax_number_1 }} @endif

@lang('business.tax_number2')

@if (!empty($business->tax_number_2)) {{ $business->tax_label_2 }}: {{ $business->tax_number_2 }} @endif

@lang('business.time_zone')

{{ $business->time_zone }}

@lang('business.is_active') @if ($business->is_active == 0)

Inactive

@else

Active

@endif @lang('business.created_by') @if (!empty($created_by))

{{ $created_by->surname }} {{ $created_by->first_name }} {{ $created_by->last_name }}

@endif
@lang('business.owner') @if (!empty($business->owner))

{{ $business->owner->surname }} {{ $business->owner->first_name }} {{ $business->owner->last_name }}

@endif @lang('business.email')

{{ $business->owner->email }}

@lang('business.mobile')

{{ $business->owner->contact_no }}

@lang('business.address')

{{ $business->owner->address }}

@if (!empty($business->logo)) Business Logo @endif
@lang('superadmin::lang.business_location')
@foreach ($business->locations as $location) @endforeach
Name Location ID Landmark city Zip Code State Country
{{ $location->name }} {{ $location->location_id }} {{ $location->landmark }} {{ $location->city }} {{ $location->zip_code }} {{ $location->state }} {{ $location->country }}
@lang('superadmin::lang.package_subscription')
@foreach ($business->subscriptions as $subscription) @endforeach
Package Name Start Date Trail End Date End Date Paid Via Payment Transaction ID Created At Created By
{{ $subscription->package_details['name'] }} @if (!empty($subscription->start_date)) {{ @format_date($subscription->start_date) }} @endif @if (!empty($subscription->trial_end_date)) {{ @format_date($subscription->trial_end_date) }} @endif @if (!empty($subscription->end_date)) {{ @format_date($subscription->end_date) }} @endif {{ $subscription->paid_via }} {{ $subscription->payment_transaction_id }} {{ $subscription->created_at }} @if (!empty($subscription->created_user)) {{ $subscription->created_user->user_full_name }} @endif
{{ __('user.all_users') }}
@lang('business.username') @lang('user.name') @lang('user.role') @lang('business.email') @lang('messages.action')
@include('superadmin::business.update_password_modal')
@stop @section('javascript') @endsection