@extends(get_view('index'))
@section('title') {{ __('Projeler') }} - @endsection
@section('menu-active-about-us') active @endsection
@section('header')
@endsection
@section('content')
@include(get_view('components.pages.page-title'), ['title' => __('Projeler')])
@if ( $projects->count() > 0 )
- {{ __('Hepsi') }}
@foreach (get_project_categories() as $item)
- {{ $item->content->title ?? '#' }}
@endforeach
@forelse ($projects as $item)
@empty
@include(get_view('components.errors.post-not-found'))
@endforelse
@else
@include(get_view('components.errors.post-not-found'))
@endif
@endsection
@section('footer')
@endsection