Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/rentpix.corals.io/Corals/modules/RentPix/resources/views/drivers/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //home/corals/rentpix.corals.io/Corals/modules/RentPix/resources/views/drivers/show.blade.php
@extends('layouts.crud.show')

@section('content_header')
    @component('components.content_header')
        @slot('page_title')
            {{ $title_singular }}
        @endslot

        @slot('breadcrumb')
            {{ Breadcrumbs::render('rentPix_driver_show') }}
        @endslot
    @endcomponent
@endsection

@section('content')
    <div class="row">
        <div class="col-md-12">
            @component('components.box')
                <div class="row">
                    <div class="col-md-6">
                        <div class="table-responsive">
                            <table class="table table-striped">
                                <tr>
                                    <th>@lang('RentPix::attributes.driver.name')</th>
                                    <td>{!! $driver->present('name_without_link') !!}</td>
                                </tr>
                                <tr>
                                    <th>@lang('RentPix::attributes.driver.email')</th>
                                    <td>{!! $driver->present('email') !!}</td>
                                </tr>
                                <tr>
                                    <th>@lang('RentPix::attributes.driver.phone')</th>
                                    <td>{!! $driver->present('phone') !!}</td>
                                </tr>
                                <tr>
                                    <th>@lang('RentPix::attributes.driver.dob')</th>
                                    <td>{!! $driver->present('dob') !!}</td>
                                </tr>
                            </table>
                        </div>
                    </div>
                    <div class="col-md-6">
                        <div class="table-responsive">
                            <table class="table table-striped">
                                <tr>
                                    <th>@lang('RentPix::attributes.driver.address')</th>
                                    <td>{!! $driver->present('address') !!}</td>
                                </tr>
                                <tr>
                                    <th>@lang('RentPix::attributes.driver.license')</th>
                                    <td>{!! $driver->present('license') !!}</td>
                                </tr>
                                <tr>
                                    <th>@lang('RentPix::attributes.driver.license_expiration_date')</th>
                                    <td>{!! $driver->present('license_expiration_date') !!}</td>
                                </tr>
                            </table>
                        </div>
                    </div>
                </div>
            @endcomponent
        </div>
    </div>
    <div class="row show-dt-tabs">
        <div class="col-md-12">
            @component('components.box')
                <ul class="nav nav-tabs">
                    <li class="nav-item">
                        <a href="#inspections" class="nav-link"
                           data-content_url="{{ $driver->getShowURL().'/inspections' }}"
                           data-toggle="tab">@lang('RentPix::module.inspection.title')</a>
                    </li>
                    <li class="nav-item">
                        <a href="#reservations" class="nav-link"
                           data-content_url="{{ $driver->getShowURL().'/reservations' }}"
                           data-toggle="tab">@lang('RentPix::module.reservation.title')</a>
                    </li>
                </ul>
                <div class="tab-content">
                    <div class="tab-pane" id="inspections">
                    </div>

                    <div class="tab-pane" id="reservations">
                    </div>
                </div>
            @endcomponent
        </div>
    </div>
@endsection
@section('js')
    <script>
        $(document).ready(function () {
            if (!window.location.hash) {
                $('.show-dt-tabs .nav-link').first().click();
            }
        });
    </script>
@endsection


Spamworldpro Mini