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/jobs/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/Corals/modules/Jobs/resources/views/jobs/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.job.title')</th>
                            <td>{!! $job->present('title')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.slug')</th>
                            <td>{!! $job->present('slug')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.owner_id')</th>
                            <td>{!! $job->present('owner_id')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.jobtype')</th>
                            <td>{!! $job->present('job_type')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.experiencelevel')</th>
                            <td>{!! $job->present('experience_level')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.salary')</th>
                            <td>{!! $job->present('salary')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.location')</th>
                            <td>{!! $job->present('location')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Corals::attributes.status')</th>
                            <td>{!! $job->present('status')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.categories')</th>
                            <td>{!! $job->present('categories')!!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.tags')</th>
                            <td>{!!$job->present('tags') !!}</td>
                        </tr>
                        <tr>
                            <th>
                            @lang('Jobs::attributes.job.starts') </td>
                            <td>{!!$job->present('starts_at') !!}</td>
                        </tr>
                        <tr>
                            <th>@lang('Jobs::attributes.job.ends')</th>
                            <td>{{ $job->present('ends_at') }}</td>
                        </tr>
                        <tr>
                            <th>
                            @lang('Jobs::attributes.job.shortdescription') </td>
                            <td>{!! $job->short_description!!}</td>
                        </tr>


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

        <div class="col-md-6">
            @component('components.box',['box_class'=>'box-success'])
                @include('Media::show_attachments',[
                  'object'=>$job,
             ])

            @endcomponent


            @component('components.box',['box_class'=>'box-success'])
                <label>@lang('Jobs::labels.job.informationofusers')</label>
                <hr>
                @forelse($job->jobApplications as $jobApplication)
                    @include('Jobs::jobs.show_user',['jobApplication'=>$jobApplication])
                @empty
                    no data (use translation here)
                @endforelse
            @endcomponent
        </div>

    </div>
    <div class="row ">
        <div class="col-md-12">
            @component('components.box',['box_class'=>'box-success'])
                <h3>@lang('Jobs::attributes.job.description'):</h3>
                <p>{!!$job->description!!} </p>
            @endcomponent
        </div>
    </div>
@endsection


Spamworldpro Mini