@extends('frontend.layouts.master') @section('title') Clients @endsection @section('main-content')
@if($clients) @foreach($clients as $client)
@php $photo=explode(',',$client->photo); @endphp

{{$client->name}}

{{$client->country}}

{!!$client->comment!!}

@endforeach @endif
@endsection