@extends('layouts.frontend') @section('title', 'Visi & Misi - TPPK') @section('content')

Visi & Misi

Arah dan tujuan Program Studi Teknologi Pengolahan Kulit

@php $profile = \App\Models\Profile::where('section', 'visi_misi')->active()->first(); $visi = ''; $misi = ''; if($profile){ preg_match('/Visi(.*?)(Misi|$)/is', $profile->content, $visiMatch); preg_match('/Misi(.*)/is', $profile->content, $misiMatch); $visi = $visiMatch[1] ?? ''; $misi = $misiMatch[1] ?? ''; } @endphp @if($profile)

Visi

{!! $visi !!}

Misi

{!! $misi !!}
@else

Konten Sedang Dipersiapkan

@endif
@endsection