@extends('layouts.master') @section('content')
Settings
@if ($errors->any())
@endif
@csrf
General Settings
@php $project_name = get_setting(Settings::APP_NAME) @endphp @if (!empty($project_name))
@endif @php $project_footer = get_setting(Settings::APP_FOOTER) @endphp @if (!empty($project_footer))
@endif @php $domain = get_setting(Settings::APP_DOMAIN) @endphp @if (!empty($domain))
@endif @php $school_name = get_setting(Settings::SCHOOL_NAME) @endphp @if (!empty($school_name))
@endif @php $email = get_setting(Settings::SCHOOL_EMAIL) @endphp @if (!empty($email))
@endif @php $school_phone = get_setting(Settings::SCHOOL_PHONE) @endphp @if (!empty($school_phone))
@endif @php $school_code = get_setting(Settings::SCHOOL_CODE) @endphp @if (!empty($school_code))
@endif @php $date_format = get_setting(Settings::DATE_FORMAT) @endphp @if (!empty($date_format))
@endif @php $time_zone = get_setting(Settings::TIME_ZONE) @endphp @if (!empty($time_zone))
@endif @php $school_logo = get_setting(Settings::SCHOOL_LOGO) @endphp @if (!empty($school_logo))

{{ capitalizeWords($school_logo->key) }}

@endif @php $favicon = get_setting(Settings::FAVICON) @endphp @if (!empty($favicon))

{{ capitalizeWords($favicon->key) }}

@endif
Accounting Setting
@php $late_fine_start_day = get_setting(Settings::LATE_FINE_START_DAY) @endphp @if (!empty($late_fine_start_day))
@endif @php $late_fine_amount = get_setting(Settings::LATE_FINE_AMOUNT) @endphp @if (!empty($late_fine_amount))
@endif @php $salary_expense_head = get_setting(Settings::SALARY_EXPENSE_HEAD) @endphp
{{ generateDropdown($expense_heads, 'class="form-control" name="salary_expense_head"', $salary_expense_head->value, "Select Expense") }}
@stop @section('scripts') @stop