@extends('website.layouts.app') @section('content')

{{ $page->sustainability_heading_en }}

{{ $page->abstracts_heading_en }}

{{-- --}}
@if (count($abstracts) > 0)
@foreach ($abstracts as $index => $abstract) @if ($index % 2 == 0)
Document
{{--

PDF {{ number_format($abstract->size, 2) }}KB

--}}

{!! Str::limit($abstract->title_en, 36, ' ...') !!}

{!! Str::limit($abstract->description_en, 100, ' ...') !!}
@else
Document
{{--

PDF {{ number_format($abstract->size, 2) }}KB

--}}

{!! Str::limit($abstract->title_en, 36, ' ...') !!}

{!! Str::limit($abstract->description_en, 100, ' ...') !!}
@endif @endforeach
@if (count($abstracts) >= 4)
@endif
@else

Document not Found

@endif
{{--

{{ $preferences->application_heading_en }}

{{ $preferences->application_description_en }}

--}} @endsection