@php use App\Models\Order; @endphp @extends('layouts.app') @section('content')

Импорт {{ $import->id }}

@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])
@if($errors->any()) @dump($errors) @endif @endsection