@extends('frontend.layouts.master') @section('title') Gallery @endsection @section('main-content')
@if($portfolios) @foreach($portfolios as $portfolio)
@php $photo=explode(',',$portfolio->photo); @endphp {{ Storage::url($portfolio->photo) }}

{{$portfolio->title}}

{!! substr($portfolio->description, 0, 100) !!}

@endforeach @endif
@endsection