@extends('admin.layouts.app') @section('content')

問い合わせ編集

{{ Form::open(["route"=>["admin.question.update", ["question"=>$question->id]], "method"=>"put"]) }}
受付日時
種別
サポーター名
氏名
フリガナ
メールアドレス
電話番号
問い合わせ内容
添付ファイル @foreach($question->support_file as $question_file) @if(!empty($question_file->file_path) && Storage::disk('question')->has($question->id.'/'.$question_file->file_path))

$question_file->id]) }}"> @if($question_file->isImage())
@endif {{ $question_file->file_name }}

@endif @endforeach
回答
添付ファイル
  • @foreach($question->site_file as $question_file) @if(!empty($question_file->file_path) && Storage::disk('question')->has($question->id.'/'.$question_file->file_path)) @endif @endforeach
    社内用備考
    対応状況
      @foreach(config('const.question_response_status') as $key => $status)
    • response_status == $key ? 'checked' : '' }}>
    • @endforeach
    {{ Form::close() }} @endsection @section('page_css') @endsection @section('page_js')