⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
html
/
resources
/
views
/
job
/
View File Name :
show.blade.php
@extends('layouts.admin') @section('page-title') {{__('Job Details')}} @endsection @section('breadcrumb') <li class="breadcrumb-item"><a href="{{route('dashboard')}}">{{__('Dashboard')}}</a></li> <li class="breadcrumb-item"><a href="{{route('job.index')}}">{{__('Job')}}</a></li> <li class="breadcrumb-item">{{__('Job Details')}}</li> @endsection @section('action-btn') <div class="float-end"> @can('edit job') <a href="{{ route('job.edit',$job->id) }}" data-url="" data-ajax-popup="true" data-title="{{__('Edit Job')}}" data-bs-toggle="tooltip" title="{{__('Edit')}}" class="btn btn-sm btn-primary"> <i class="ti ti-pencil"></i> </a> @endcan </div> @endsection @section('content') <div class="row"> <div class="col-md-4"> <div class="card "> <div class="card-body table-border-style"> <div class="table-responsive"> <table class="table mt-3"> <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 rounded badge bg-primary">{{App\Models\Job::$status[$job->status]}}</span> @else <span class="p-2 px-3 rounded 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 rounded badge bg-primary">{{$skill}}</span> @endforeach </td> </tr> </tbody> </table> </div> </div> </div> </div> <div class="col-md-8"> <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> </div> </div> </div> </div> </div> @endsection