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

{{$page->title}}

{!!$page->content !!}
@if(isset($staff) && $page->id==4)
@if($staff && count($staff)>0) @foreach($staff as $item)
{{$item->title}}

{!! Str::limit($item->description, 120, ' ...') !!}

@endforeach @endif
@endif
@endsection