@php $images = []; $videos = []; if(is_array($infoAsso['fotos'])){ $images = array_filter($infoAsso['fotos'], function ($var) { return $var['tipus'] == 'foto'; }); $videos = array_filter($infoAsso['fotos'], function ($var) { return $var['tipus'] == 'video_youtube'; }); } @endphp @extends('frontend.layouts.master') @section('page_title') {{ __('about.title') }} @endsection @section('head') @endsection @section('content-wrapper') @if(view()->exists('tenants.' . $currentCompany->code . '.frontend.about-us.portada' )) @include('tenants.' . $currentCompany->code . '.frontend.about-us.portada') @else