@if(Auth::user())
@can('portfolio check')
@endcan
@endif
{{ __('frontend.recent_projects') }}
@foreach ($recent_portfolios as $item)
@if(Auth::user())
@can('portfolio check')
@php
$url = request()->path();
$modified_url = str_replace('/', '-bracket-', $url);
@endphp
@endcan
@endif
@if (!empty($item->section_image))
@endif
@if (!empty($item->url))
@else
@endif
{{ $item->category_name }}
@endforeach
@unset ($item)