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