@extends('pwa.template.app.main') @section('script') @endsection @section('head') @endsection @section('app-content')
@if (count($entertainments) > 0) @foreach ($entertainments as $e)
@switch($e->tipe) @case('foto') @break @case('video') @break @default @endswitch

{{ $e->judul }}

{{ $e->kategori }}

{{ substr($e->deskripsi, 0, 50) . '...' }}

@endforeach @else @push('scripts') @endpush @endif
@endsection