@extends('common.dashboard') @section('title','Services') @section('content')

Service Details

@foreach($services as $key=>$row) @endforeach
# Photo Title DescriptionAction
{{$key+1}} @if( strlen($row->title)>30 )

{{mb_substr($row->title,0,30)}} ...

@else {{ $row->title }} @endif
@if( strlen(strip_tags($row->description))>40 )

{{mb_substr(strip_tags($row->description),0,40)}} ...

@else {!! strip_tags($row->description) !!} @endif
@endsection