@extends('frontend.layouts.template') @section('content') @if ($article )
{!! $article->detail !!}
@endif @if( $projects )
  PROJECT LIST
@foreach ($projects as $item)
Project 1
What Works in Southeast Asia
@if( $item->attach) @endif
@endforeach
@endif @if( $completeds )
  COMPLETED PROJECTS
@foreach ($completeds as $item)
{{ $item->name }}
{!! $item->description !!}
@if( $item->attach) @endif
@endforeach
@endif @endsection @section('stylesheet') @endsection