@php
use App\Libraries\General;
use App\Libraries\FileSystem;
@endphp
{{-- {{ pr($listing) }} --}}
@foreach($listing as $key => $v)
@php
$images = isset($v['image']) && $v['image'] ? json_decode($v['image']) : [];
@endphp
|
{{ isset($v['bread_name']) ? $v['bread_name'] : '' }}
|
{{ isset($v['name']) ? $v['name'] : '' }}
|
{{ isset($v['parents']) && isset($v['parents'][0]) ? $v['parents'][0]->name : '' }}
|
{{ isset($v['parents']) && isset($v['parents'][1]) ? $v['parents'][1]->name : '' }}
|
{{ _d($v['created']) }}
|
|
|
@endforeach