@extends('front.layouts.app') @section('style') @endsection @section('content')

{{$program->name}}

{{$program->country->title . ', ' . $program->city->title}}

{{$program->plan}}

@if($program->discount != null) {{ ($program->price * 100)/$program->discount . General::getCurrency() }} @endif

@if($program->price > 0)

{{ $program->price . General::getCurrency() }} /للفرد

@endif
@if(isset($program->progImages) && $program->progImages->count() > 0)

gallery

@endif
@endsection