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/job-board.corals.io/Corals/modules/Jobs/resources/views/candidates/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/Corals/modules/Jobs/resources/views/candidates/show.blade.php
@extends('layouts.crud.show')

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

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

@section('content')
    <div class="row">
        <div class="col-md-6">
            @component('components.box',['box_class'=>'box-success'])

                <div class="table-responsive">
                    <table class="table table-striped">
                        <tr>
                            <th>@lang('Jobs::attributes.candidate.user_id')</th>
                            <td>{!! $candidate->user->present('full_name')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.candidate.salary')</th>
                            <td>{!! $candidate->present('salary')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.candidate.location')</th>
                            <td>{!! $candidate->location->present('name')!!}</td>
                        </tr>
                        <tr>
                            <th>
                            @lang('Jobs::attributes.candidate.profession') </td>
                            <td>{!! $candidate->present('profession')!!}</td>
                        </tr>


                    </table>
                </div>
            @endcomponent
        </div>

        <div class="col-md-6">
            @if(!($candidate->work->isEmpty()))
            <h3>@lang('Jobs::attributes.work.work_experience')</h3>
            @component('components.box',['box_class'=>'box-success'])
                <div class="table-responsive">
                    <table class="table table-striped">
                        <tr>
                            <th>@lang('Jobs::attributes.work.title')</th>
                            <th>@lang('Jobs::attributes.work.starts')</th>
                            <th>@lang('Jobs::attributes.work.ends')</th>
                            <th>@lang('Jobs::attributes.work.shortdescription')</th>
                        </tr>
                        @foreach($candidate->work as $work)
                        <tr>
                            <td>{!! $work->title!!}</td>
                            <td>{!! $work->starts_at!!}</td>
                            <td>{!! $work->ends_at!!}</td>
                            <td>{!! $work->short_description!!}</td>
                        </tr>
                        @endforeach
                    </table>
                </div>
            @endcomponent
            @endif
        </div>

    </div>
    <div class="row">
        <div class="col-md-6">
            @if(!($candidate->education->isEmpty()))
                <h3>@lang('Jobs::attributes.education.education')</h3>
                @component('components.box',['box_class'=>'box-success'])
                    <div class="table-responsive">
                        <table class="table table-striped">
                            <tr>
                                <th>@lang('Jobs::attributes.education.title')</th>
                                <th>@lang('Jobs::attributes.education.starts')</th>
                                <th>@lang('Jobs::attributes.education.ends')</th>
                                <th>@lang('Jobs::attributes.education.shortdescription')</th>
                            </tr>
                            @foreach($candidate->education as $education)
                                <tr>
                                    <td>{!! $education->title!!}</td>
                                    <td>{!! $education->starts_at!!}</td>
                                    <td>{!! $education->ends_at!!}</td>
                                    <td>{!! $education->short_description!!}</td>
                                </tr>
                            @endforeach
                        </table>
                    </div>
                @endcomponent
            @endif
        </div>
    </div>

@endsection


Spamworldpro Mini