@extends('layouts.heading-page') @section('title') News - @endsection @section('seo_keywords') @endsection @section('seo_description') @endsection @section('css') @endsection @section('breadcrumbs') News @endsection @section('page-main')

News

@php foreach ($dataRows as $row) { $img_memo = ''; $img_src = '/assets/img/news-item-a01.jpg'; $imgs = $row->photos; // $imgs = array_filter($row['photos'], function($v) { // return $v['is_selected'] == true; // }); if (count($imgs) > 0) { foreach($imgs as $img) { //$img_memo = $img['comment']; $img_src = URL::asset('/storage/'.$img['file_path']); break; } } @endphp
{{ $img_memo }}

{{ $row->title }}

{{ Str::limit($row->description, 128) }}

@php } @endphp
@endsection @section('script') @endsection