@extends('layouts.adminapp') @section('content')

{{$Group}} {{__('lng.Settings')}}

{{__('lng.Back')}}
@foreach ($Settings as $Setting) @switch($Setting->group) @case('General') @if ($Setting->title == 'Paginate')
{{$Setting->title}} - ({{$Setting->value}})
@elseif($Setting->title == 'financial_year')
{{__('lng.FinancialYear')}} - ({{$Setting->value}})
@elseif($Setting->title == 'Subscription_month')
@php $Month=date("Y-m",strtotime($Setting->value)); @endphp
{{__('lng.SubscriptionMonth')}} - ({{$Month}} )
@elseif($Setting->title == 'student_batch_year')
{{__('lng.StudentBatchYear')}} - ({{$Setting->value}})
@else
@switch($Setting->title) @case('IsShowAbout') Show About @break @case('IsShowProduct') Show Product @break @case('IsShowSplash') Show Splash @break @case('IsShowService') Show Service @break @endswitch
@endif @break @case('Product')
@switch($Setting->title) @case('Product_IsShowActualPrice') Show Product MRP @break @case('Product_IsShowAmount') Show Product Amount @break @case('IsShowAbout') Show About @break @case('Product_IsShowOffer') Show Product Offer @break {{-- @default --}} @endswitch
@break @case('Service')
@switch($Setting->title) @case('Service_IsShowOffer') Show Product Offer @break @case('Service_IsShowActualPric') Show Product Price @break @case('IsShowAbout') Show About @break @case('Service_IsShowAmount') Show Product Amount @break @default @endswitch
@break @case('Loan') @if($Setting->title == 'IsInterestFreeLoanRegister')
{{__('lng.InterestFreeLoanRegister')}}
@elseif ($Setting->title == 'RegisterFee')
{{$Setting->title}}
@elseif($Setting->title == 'RenewalFee')
{{$Setting->title}}
@endif @break @endswitch @endforeach
@endsection