HEX
Server: Apache
System: Linux server2.voipitup.com.au 4.18.0-553.109.1.lve.el8.x86_64 #1 SMP Thu Mar 5 20:23:46 UTC 2026 x86_64
User: posscale (1027)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/posscale/public_html/printmanager/resources/views/tenant/vendors/show.blade.php
<x-app-layout>

    <x-slot name="header">
        <h1 class="mb-0">
            {{ __('Vendor Details') }}
        </h1>
    </x-slot>
    <div class="py-12">
        <div class="grid grid-cols-1">
            <div class="card">
                <div class="card-header flex justify-between">
                    <h3 class="card-title">
                        {{ __('Vendor Details') }}
                    </h3>
                    <a href="{{route('vendors.index')}}" class="btn btn-primary w-max">Back</a>
                </div>
                <div class="card-body">
                    <table class="table">
                        <thead>
                            <tr>
                                <th width="250">Data</th>
                                <td><b>Value</b></td>
                            </tr>
                        </thead>
                        <tbody>
                            <tr>
                                <th>Vendor name</th>
                                <td class="border-b p-4 text-left">{{$vendors->vendor_name}}</td>
                            </tr>
                            <tr>
                                <th>Contact email</th>
                                <td class="border-b p-4 text-left">{{$vendors->contact_email}}</td>
                            </tr>
                            <tr>
                                <th>Phone number</th>
                                <td class="border-b p-4 text-left">{{$vendors->phone_number}}</td>
                            </tr>
                            <tr>
                                <th>Comapny name</th>
                                <td class="border-b p-4 text-left">{{$vendors->comapny_name}}</td>
                            </tr>
                            


                        </tbody>

                    </table>

                </div>
            </div>
        </div>

    </div>
</x-app-layout>