@extends('user.app')
@if($type == 1)
@section('title', $service->name1)
@elseif($type == 2)
@section('title', $service->name2)
@else
@section('title', $service->name3)
@endif
@section('head')
@endsection
@section('content')
@if($type == 1)
{{$service->name1}}
@elseif($type == 2)
{{$service->name2}}
@else
{{$service->name3}}
@endif
{!!$service->topBlock!!}
{!!$service->middleBlock!!}
{!!$service->bottomBlock!!}
@include('user.prefooter')
@endsection
@section('foot')
@endsection