@include('global.header-links')
@include('partials.sidebar')
@include('partials.header')

Pedigrees

@foreach ($pedigrees as $pedigree) @endforeach
Full Name Sex DOB Color Weight Dam Sire Creator View
{{$pedigree->full_name}} {{ucfirst($pedigree->sex) ?? 'Not Specified'}} {{$pedigree->dob ?? 'Not Specified'}} {{$pedigree->color ?? 'Not Specified'}} {{$pedigree->weight ?? 'Not Specified'}} {{$pedigree->dam->full_name ?? 'Unknown'}} {{$pedigree->sire->full_name ?? 'Unknown'}} {{ucfirst($pedigree->creater->username)}}
@include('partials.footer')
@include('global.footer-links')