![]() 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/ledger.corals.io/Corals/modules/Ledger/resources/views/accounts/ |
@extends('layouts.crud.show') @section('content_header') @component('components.content_header') @slot('page_title') {{ $title_singular }} @endslot @slot('breadcrumb') {{ Breadcrumbs::render('ledger-account-show') }} @endslot @endcomponent @endsection @section('content') <div class="row"> <div class="col-md-3"> @component('components.box') @slot('box_title') @lang('Ledger::labels.account.account_details') @endslot <div class="table-responsive"> <table class="table table-striped"> <tbody> <tr> <th>@lang('Ledger::attributes.account.name')</th> <td>{!!$account->present('name') !!}</td> </tr> <tr> <th>@lang('Ledger::attributes.account.email')</th> <td>{!!$account->present('email') !!}</td> </tr> <tr> <th>@lang('Ledger::attributes.account.phone')</th> <td>{!!$account->present('phone') !!}</td> </tr> <tr> <th>@lang('Ledger::attributes.account.address')</th> <td>{!!$account->present('address') !!}</td> </tr> </tbody> </table> </div> @endcomponent </div> <div class="col-md-9"> @component('components.box') @slot('box_title') @lang('Ledger::labels.record.records_details') @endslot @slot('box_actions') {!!CoralsForm::link("/ledger/accounts/$account->hashed_id/account-report?".http_build_query(request()->all()), '<i class="fa fa-print"></i> Print',['class'=>'btn btn-sm btn-primary','target'=>'_blank'])!!} @endslot @include('Ledger::partials.DateForm') @include('Ledger::partials.recordDetailsForAccount',['account_id'=>$account->id]) @endcomponent </div> </div> @endsection