@extends('layouts.app') @section('title', $job->title.'|'.optional($job->shop)->name.' の求人|'.config('app.name')) @section('meta_description', \Illuminate\Support\Str::limit(strip_tags($job->summary ?: $job->description), 110)) @section('content')
ホーム求人 > {{ $job->title }}
@if($job->shop && $job->shop->line_url && $job->shop->member && $job->shop->member->planAllows('line_button')) 💬 LINEで気軽に質問する @endif

{{ $job->title }} @if($job->isNew())NEW@endif @php $dl = $job->daysLeft(); @endphp @if($dl !== null && $dl <= 14)残り{{ $dl }}日@endif

@if($job->featured_image)
{{ $job->title }}
@endif
@if($job->wage){{ $job->wage }}@endif @foreach(($job->tags ?? []) as $t){{ $t }}@endforeach
店舗
{{ optional($job->shop)->name }}({{ optional($job->shop)->pref }}{{ optional($job->shop)->city }})
@if($job->expires_at)
掲載期限
{{ $job->expires_at->format('Y-m-d') }}
@endif
掲載日
{{ optional($job->created_at)->format('Y-m-d') }}
@if($job->wage_examples)
給与モデルケース
{{ $job->wage_examples }}
@endif @if($job->summary)
概要
{{ $job->summary }}
@endif
仕事内容
{{ $job->description }}
@if($job->images && $job->images->count())
写真ギャラリー
@foreach($job->images as $im) {{ $im->alt }} @endforeach
@endif @if($job->requirements)
応募条件
{{ $job->requirements }}
@endif @if($job->benefits)
待遇・福利厚生
{{ $job->benefits }}
@endif
@endsection