@php /* $isFranchiseSeller = session('is_franchise_seller');*/ $isSellerUser = isSellerUser(); $sellerName = ucwords(sellerName()); @endphp @if($isSellerUser)
@php $franchiseSellerId = session('seller_id'); $getFranchise = getFranchise($franchiseSellerId) @endphp @if(isset($getFranchise) && count($getFranchise) > 0) @endif
@else
{!! $sellerName !!}
@endif @php $getFinancialYears = getFinancialYears(); $currentFNY = session('fny_title'); @endphp @if($currentFNY && !empty($getFinancialYears)) @php usort($getFinancialYears, function($a, $b) { return $b['id'] <=> $a['id']; }); @endphp
@endif