HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux ip-10-0-8-47 6.8.0-1021-aws #23~22.04.1-Ubuntu SMP Tue Dec 10 16:31:58 UTC 2024 aarch64
User: ubuntu (1000)
PHP: 8.1.2-1ubuntu2.22
Disabled: NONE
Upload Files
File: /var/www/javago-portal-updates/resources/views/admin/customer-module/view.blade.php
<x-app-layout>
    <x-app-breadcrumb>
        <li class="breadcrumb-item">
            <a href="{{ $customerModuleRequestUrl }}" class="breadcrumb_home">
                {{ __('common.CustomerModule') }}
            </a>
        </li>
        <li class="breadcrumb-item active" aria-current="page">{{ __('common.viewCafeRequest') }}</li>
    </x-app-breadcrumb>
    <div class="page-header row">
        <div class="page-title col-12 d-flex pr-4">
            <h3 class="my-auto">{{ __('common.viewCustomer') }}</h3>
        </div>
    </div>
    <div class="row layout-top-spacing">
        <div class="col-xl-12 col-lg-12 col-md-12 col-sm-12 col-12 layout-spacing">
            <div class="col-xl-12 col-lg-6 col-md-12 col-sm-12 col-12 row">
                <div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 col-6 mt-5">
                    <h4 class=""><strong>{{ __('common.name') }}</strong></h4>
                    <p class="profile">{{ isset($name) && $name != '' ? $name : ' - ' }}</p>
                </div>
                <div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 col-6 mt-5">
                    <h4 class=""><strong>{{ __('common.email') }}</strong></h4>
                    <p class="profile">{{ isset($email) && $email != '' ? $email : ' - ' }}</p>
                </div>
                <div class="col-xl-4 col-lg-6 col-md-6 col-sm-6 col-6 mt-5">
                    <h4 class=""><strong>{{ __('common.address') }}</strong></h4>
                    <p class="profile">{{ isset($address) && $address != '' ? $address : ' - ' }}</p>
                </div>
            </div>
        </div>
    </div>
    </div>
</x-app-layout>