@stack('css-links')
Nvus Prints
@include('includes.header') @yield("content") @php $testimonials = \App\Models\Testimonial::all(); @endphp
Testimonials
@foreach($testimonials as $testimonial)
@for($i = 0; $i < $testimonial->rating; $i++)
@endfor
Review(s)
{!! $testimonial->comment !!}
{{ $testimonial->name }}
Prints
@endforeach
@php $feeds = collect(\App\Http\Controllers\DevelopController::getInstaFeeds()) ->whereIn('media_type', ['IMAGE', 'CAROUSEL_ALBUM']); @endphp
@foreach($feeds as $item)
@if(isset($item['caption']))
{{$item['caption']}}
@endif
@instagram
@endforeach
@include('includes.footer') @yield('script') @stack('page-scripts')