@extends('web.layouts.layout') @section('content')

{{$program->name}}

@foreach($photos as $row)
@endforeach

{{__('web.program_desc')}}

{!! $program->description !!}
@if(count($condition) > 0)

{{__('web.condition')}}

{{__('web.condition_contains')}}

    @foreach($condition as $row)
  • {{$row->name}}
  • @endforeach
@endif @if((count($goal_images) + count($standard) ) > 0)
@if(count($goal_images) > 0)

{{__('web.goal_images')}}

@foreach($goal_images as $row)
@endforeach
@endif @if(count($goal_images) > 0)

{{__('web.standards')}}

    @foreach($standard as $row)
  • {{$row->name}}
  • @endforeach
@endif
@endif @if(count($reward) > 0)

{{__('web.rewards')}}

@foreach($reward as $row)
{{$row->name}}
@endforeach
@endif
@section('inject_js') @endsection @stop