@extends('frontend.index') @section('content') @php $setting = DB::table("setting")->first(); @endphp
@if($setting->scrolling_text != NULL)
{{--
@lang('frontend.announcement')
--}}
{{$setting->scrolling_text}}
@endif @if(env('APP_URL') == 'https://chhgc.edu.bd/')

Student's Information Form

@endif
@lang('frontend.notice_board')
@if(isset($notice)) @foreach($notice as $n)
  •   @if($lang == 'en'){{$n->title ?: $n->title_bn}}@else {{$n->title_bn ?: $n->title}}@endif
  • @endforeach @endif
    @php $about = DB::table("pages")->where('id',1)->first(); @endphp {{--
      @if($lang == 'en'){!! Str::limit($about->details,'500')!!}@else {!! Str::limit($about->details_bn,'500')!!} @endif
    --}}
    @if(env('APP_URL') == 'https://chhgc.edu.bd/') @endif @php $setting = DB::table("setting")->first(); @endphp
    @include('frontend.sidebar')
    @endsection