| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @php
- use App\Models\Order;
- @endphp
- @extends('layouts.app')
- @section('content')
- <div class="px-3">
- <div class="row mb-2">
- <div class="col-md-6">
- <h3>
- Импорт {{ $import->id }}
- </h3>
- </div>
- <div class="col-md-6 text-end">
- <a href="{{ $previous_url ?? route('import.index', session('gp_import')) }}"
- class="btn btn-sm mb-1 btn-outline-secondary">Назад</a>
- </div>
- </div>
- <div class="row">
- <div class="col-xl-12 border-end">
- @include('partials.input', ['name' => 'type', 'title' => 'Тип', 'value' => $import->type, 'disabled' => true])
- @include('partials.input', ['name' => 'status', 'title' => 'Статус', 'value' => $import->status, 'disabled' => true])
- @include('partials.input', ['name' => 'filename', 'title' => 'Файл', 'value' => $import->filename, 'disabled' => true])
- @include('partials.input', ['name' => 'created_at', 'title' => 'Создан', 'value' => $import->created_at, 'disabled' => true])
- @include('partials.input', ['name' => 'updated_at', 'title' => 'Изменен', 'value' => $import->updated_at, 'disabled' => true])
- @include('partials.textarea', ['name' => 'result', 'title' => 'Результат', 'value' => $import->result , 'disabled' => true, 'size' => 30])
- </div>
- </div>
- </div>
- @if($errors->any())
- @dump($errors)
- @endif
- @endsection
|