@extends('layouts.landing') @section('title') {{ __('message.Galeri') }} @endsection @section('content') {{--

{{ Helper::lang('Gallery') }}

--}}
@forelse ($gallery as $key => $value)
@if ($value->photo)
@else
@endif

{{ Str::words($value->name, 6, '...') }}

@empty

{{ __('message.Tidak ada data') }}

@endforelse
@if ($gallery->hasPages())
{{ $gallery->links('pagination::bootstrap-4') }}
@endif
@endsection