⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.94
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
hrms.dev-unit.com
/
resources
/
views
/
job
/
View File Name :
show.blade.php
@extends('layouts.admin') @section('page-title') {{ __('Job Details') }} @endsection @section('action-button') @can('Edit Job') <a href="{{ route('job.edit', $job->id) }}" data-ajax-popup="true" data-size="md" data-title="{{ __('Edit Job') }}" data-bs-toggle="tooltip" title="" class="btn btn-sm btn-info" data-bs-original-title="{{ __('Edit') }}"> <i class="ti ti-pencil text-white"></i> </a> @endcan @endsection @section('breadcrumb') <li class="breadcrumb-item"><a href="{{ route('dashboard') }}">{{ __('Home') }}</a></li> <li class="breadcrumb-item"><a href="{{ route('job.index') }}">{{ __('Manage Job') }}</a></li> <li class="breadcrumb-item">{{ __('Job Details') }}</li> @endsection @section('content') <div class="row"> <div class="col-md-12"> <div class="card "> <div class="card-body table-border-style"> <div class="table-responsive"> <table class="table "> <tbody> <tr> <td>{{__('Job Title')}}</td> <td class="">{{$job->title}}</td> </tr> <tr> <td>{{__('Branch')}}</td> <td class="">{{ !empty($job->branches)?$job->branches->name:__('All') }}</td> </tr> <tr> <td>{{__('Job Category')}}</td> <td class="">{{ !empty($job->categories)?$job->categories->title:'-' }}</td> </tr> <tr> <td>{{__('Positions')}}</td> <td class="">{{$job->position}}</td> </tr> <tr> <td>{{__('Status')}}</td> <td class=""> @if($job->status=='active') <span class="p-2 px-3 badge bg-success">{{App\Models\Job::$status[$job->status]}}</span> @else <span class="p-2 px-3 badge bg-danger">{{App\Models\Job::$status[$job->status]}}</span> @endif </td> </tr> <tr> <td>{{__('Created Date')}}</td> <td class="">{{\Auth::user()->dateFormat($job->created_at)}}</td> </tr> <tr> <td>{{__('Start Date')}}</td> <td class="">{{\Auth::user()->dateFormat($job->start_date)}}</td> </tr> <tr> <td>{{__('End Date')}}</td> <td class="">{{\Auth::user()->dateFormat($job->end_date)}}</td> </tr> <tr> <td>{{__('Skill')}}</td> <td class=""> @foreach($job->skill as $skill) <span class="p-2 px-3 badge bg-primary">{{$skill}}</span> @endforeach </td> </tr> </tbody> </table> </div> </div> </div> </div> <div class="col-md-12"> <div class="card card-fluid"> <div class="card-body"> <div class="col-12"> <div class="row"> @if(($job->applicant)) <div class="col-6"> <h6>{{__('Need to ask ?')}}</h6> <ul class=""> @foreach($job->applicant as $applicant) <li>{{ucfirst($applicant)}}</li> @endforeach </ul> </div> @endif @if(!empty($job->visibility)) <div class="col-6"> <h6>{{__('Need to show option ?')}}</h6> <ul class=""> @foreach($job->visibility as $visibility) <li>{{ucfirst($visibility)}}</li> @endforeach </ul> </div> @endif @if(count($job->questions())>0) <div class="col-12"> <h6>{{__('Custom Question')}}</h6> <ul class=""> @foreach($job->questions() as $question) <li>{{$question->question}}</li> @endforeach </ul> </div> @endif </div> <div class="row "> <div class="col-12 mt-3"> <h6>{{__('Job Description')}}</h6> {!! $job->description !!} </div> </div> <div class="row"> <div class="col-12 mt-3"> <h6>{{__('Job Requirement')}}</h6> {!! $job->requirement !!} </div> </div> @if (!empty($job->terms_and_conditions)) <div class="row"> <div class="col-12 mt-3"> <h6>{{ __('Terms and conditions') }}</h6> {!! $job->terms_and_conditions !!} </div> </div> @endif </div> </div> </div> </div> </div> @endsection