From cc56a1fdbae9f839022053c52b9676f1ac8fc2c0 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Tue, 28 Jul 2026 13:46:15 +0300 Subject: [PATCH 1/3] Update Laravel version in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ac6247be3c..3446b090d42 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,8 @@ OpenClassify is a modular classifieds marketplace built with Laravel 12 and Fila ## Core Stack -- Laravel 12 +- PHP 8.5 +- Laravel 13 - FilamentPHP v5 - `nwidart/laravel-modules` - Blade + Tailwind + Vite From f309fdbb2085d5c499146ef18bab496517bc9398 Mon Sep 17 00:00:00 2001 From: Fatih Alp Date: Tue, 28 Jul 2026 13:46:39 +0300 Subject: [PATCH 2/3] Update Laravel version in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3446b090d42..7f1846afaae 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OpenClassify -OpenClassify is a modular classifieds marketplace built with Laravel 12 and Filament v5. +OpenClassify is a modular classifieds marketplace built with Laravel 13 and Filament v5. ![OpenClassify Screenshot](public/screenshot.jpg) From 9bd573ffb398a24339f3fa03e831138e21e7fc92 Mon Sep 17 00:00:00 2001 From: fatihalp Date: Mon, 10 Aug 2026 03:10:03 +0300 Subject: [PATCH 3/3] Strict Mode Added --- .../Conversation/resources/views/inbox.blade.php | 4 ++-- .../views/partials/inbox-list-pane.blade.php | 10 +++++----- .../views/partials/inbox-thread-pane.blade.php | 13 +++++++++---- Modules/Favorite/resources/views/index.blade.php | 16 ++++++++-------- .../views/themes/default/show.blade.php | 4 ++-- Modules/Site/resources/views/home.blade.php | 2 +- resources/css/app.css | 4 ++++ 7 files changed, 31 insertions(+), 22 deletions(-) diff --git a/Modules/Conversation/resources/views/inbox.blade.php b/Modules/Conversation/resources/views/inbox.blade.php index e74258c852b..c51a7051f1b 100644 --- a/Modules/Conversation/resources/views/inbox.blade.php +++ b/Modules/Conversation/resources/views/inbox.blade.php @@ -35,7 +35,7 @@ class="panel-surface overflow-hidden p-0" @endif
-
+
@include('conversation::partials.inbox-list-pane', [ 'conversations' => $conversations, 'messageFilter' => $messageFilter, @@ -43,7 +43,7 @@ class="panel-surface overflow-hidden p-0" ])
-
+
@include('conversation::partials.inbox-thread-pane', [ 'selectedConversation' => $selectedConversation, 'messageFilter' => $messageFilter, diff --git a/Modules/Conversation/resources/views/partials/inbox-list-pane.blade.php b/Modules/Conversation/resources/views/partials/inbox-list-pane.blade.php index 15e02bf4037..5feb76936c1 100644 --- a/Modules/Conversation/resources/views/partials/inbox-list-pane.blade.php +++ b/Modules/Conversation/resources/views/partials/inbox-list-pane.blade.php @@ -2,13 +2,13 @@

Filters

@@ -22,7 +22,7 @@ $conversationImage = $conversationListing?->primaryImageData('thumb'); $lastMessage = trim((string) ($conversation->lastMessage?->body ?? '')); @endphp - +
@if($conversationImage) @@ -46,7 +46,7 @@

@if($conversation->unread_count > 0) - + {{ $conversation->unread_count }} @endif diff --git a/Modules/Conversation/resources/views/partials/inbox-thread-pane.blade.php b/Modules/Conversation/resources/views/partials/inbox-thread-pane.blade.php index a3812db6dd2..a3ce046ade2 100644 --- a/Modules/Conversation/resources/views/partials/inbox-thread-pane.blade.php +++ b/Modules/Conversation/resources/views/partials/inbox-thread-pane.blade.php @@ -10,6 +10,11 @@ : null; @endphp
+ + + + +
{{ strtoupper(substr((string) ($activePartner?->name ?? 'K'), 0, 1)) }}
@@ -27,7 +32,7 @@ @php $isMine = (int) $message->sender_id === (int) auth()->id(); @endphp
-
+
{{ $message->body }}

@@ -52,7 +57,7 @@ @csrf - @@ -61,14 +66,14 @@

@csrf - +
- +
@else
diff --git a/Modules/Favorite/resources/views/index.blade.php b/Modules/Favorite/resources/views/index.blade.php index 2614385c501..76343b90bff 100644 --- a/Modules/Favorite/resources/views/index.blade.php +++ b/Modules/Favorite/resources/views/index.blade.php @@ -28,7 +28,7 @@ 'category' => $selectedCategoryId, ], fn ($value) => !is_null($value) && $value !== ''); @endphp -
+

Saved Listings

@@ -90,7 +90,7 @@ @endif
- + {{ $listing->title }}

{{ $meta !== '' ? $meta : 'No category or location data' }}

@@ -102,13 +102,13 @@ @if($canMessageListing) @if($conversationId) - + Open chat @else
@csrf -
@@ -120,7 +120,7 @@
@csrf - +
@@ -167,7 +167,7 @@

- + Open search
@@ -199,7 +199,7 @@ @forelse($favoriteSellers as $seller)
-
+
{{ strtoupper(substr((string) $seller->name, 0, 1)) }}
@@ -210,7 +210,7 @@ @csrf - diff --git a/Modules/Listing/resources/views/themes/default/show.blade.php b/Modules/Listing/resources/views/themes/default/show.blade.php index 7d749141318..2555c48a848 100644 --- a/Modules/Listing/resources/views/themes/default/show.blade.php +++ b/Modules/Listing/resources/views/themes/default/show.blade.php @@ -47,7 +47,7 @@
@if($galleryImages->count() > 1) -
+
@foreach($galleryImages->skip(1)->take(5) as $image)
@include('listing::partials.responsive-image', [ @@ -95,7 +95,7 @@
-
+

@if($hasPrice) @if($priceValue > 0) diff --git a/Modules/Site/resources/views/home.blade.php b/Modules/Site/resources/views/home.blade.php index fa1c82c3227..2ce9fa33fec 100644 --- a/Modules/Site/resources/views/home.blade.php +++ b/Modules/Site/resources/views/home.blade.php @@ -93,7 +93,7 @@ @endauth

-