24 lines
566 B
PHP
24 lines
566 B
PHP
@extends('adminlte::layouts.app')
|
|
|
|
@section('htmlheader_title')
|
|
{{ $co->name }}@if ($name != $co->name)|{{ $name }}@endif
|
|
@endsection
|
|
|
|
@section('contentheader_title')
|
|
Summary for {{$co->name}}@if ($name != $co->name)|{{ $name }}@endif
|
|
@endsection
|
|
@section('contentheader_description')
|
|
{{ $ido->import_date->format('Y-m-d') }}
|
|
@endsection
|
|
|
|
@section('main-content')
|
|
@include('widgets.category-select')
|
|
@include('widgets.summary')
|
|
|
|
@yield('category-select')
|
|
@yield('summary')
|
|
@if($pdata)
|
|
@include('widgets.product-iot')
|
|
@yield('product')
|
|
@endif
|
|
@endsection |