@extends('user.layouts.app') @section('title', '売却書類メール送信') @section('header')

売却書類メール送信

@endsection @section('content')
@foreach(config('const.document_main_category') as $key => $title)

{{ $title }}

@foreach(config('const.'.(config("const.document_main_category_name.".$key)).'_document_sub_category') as $sub_key => $sub_title) @endforeach
{{ $sub_title }} @if(isset($documents[$key][$sub_key]) && !empty($documents[$key][$sub_key]->file_path) && Storage::disk('document')->has($documents[$key][$sub_key]->id.'/'.$documents[$key][$sub_key]->file_path)) @unless($sub_key == config('const.erase_document_sub_category_code.purchase_contract')) 書式をメールで送信 @endunless @endif
@endforeach
@endsection @section('page_js') @endsection @section('page_css') @endsection