@extends('layouts.console') @section('title','求人モデレーション')@section('console','運営管理')@section('heading','求人モデレーション') @section('who','管理者')@section('logout', route('admin.logout')) @section('nav')@include('admin._nav')@endsection @section('content')
@foreach(['pending'=>'承認待ち','published'=>'掲載中','rejected'=>'非公開','expired'=>'期限切れ'] as $k=>$lbl) {{ $lbl }} @endforeach
@forelse($jobs as $j) @empty @endforelse
店舗タイトル給与状態期限操作
{{ optional($j->shop)->name }}(#{{ $j->shop_id }}) {{ $j->title }} {{ $j->wage }} {{ ['pending'=>'承認待ち','published'=>'掲載中','rejected'=>'非公開','expired'=>'期限切れ'][$j->status] ?? $j->status }} {{ $j->expires_at?->format('Y-m-d') }} 詳細 @if($j->status!=='published')
@csrf
@endif @if($j->status==='pending')
@csrf
@endif @if($j->status==='published')
@csrf
@endif
該当なし。
{{ $jobs->links() }}
@endsection