@extends('site.inner') @section('title') {{-- {!! $category->title !!}--}} @endsection @section('title') {{ label('lbl_founding_fathers') }} @endsection {{--@section('breadcrumb')--}} {{-- --}} {{--@endsection--}} @section('content')
{{ breadcrumb() }}

{{ label('lbl_about_school_and_mwalimu_nyerere') }}

{!! $about_school->content !!}

{{ label('lbl_founding_fathers') }}

@if(count($foundingFathers)) @foreach($foundingFathers as $key=>$father) @if($father->position === 1)
{{ $father->fullname }}
@php $cleanedText = preg_replace('/

|<\/p>| /', '', $father->content); @endphp

{{ strip_tags($cleanedText) }}

- {{ $father->fullname }} ({{ $father->party }})
@endif @endforeach @endif
@if(count($foundingFathers)) @foreach($foundingFathers as $key=>$father) @if($father->position === 2)
{{ $father->fullname }}
@php $cleanedText = preg_replace('/

|<\/p>| /', '', $father->content); @endphp

{{ strip_tags($cleanedText) }}

- {{ $father->fullname }} ({{ $father->party }})
@endif @endforeach @endif

{{ label('lbl_fundamental_principles') }}

@if(count($fundamentalPrinciples)) @foreach($fundamentalPrinciples as $key=>$principle)
{{ $principle->title }}
@endforeach @endif
@stop