@@ -82,7 +82,7 @@ class XenforoApiService {
|
||||
public function markAllNotificationsRead(int $userId): void
|
||||
{
|
||||
Cache::forget("xf_alerts_{$userId}");
|
||||
$this->post("alerts/mark-all", $userId );
|
||||
$this->post("alerts/mark-all", $userId, ['read' => true, 'viewed' => true] );
|
||||
}
|
||||
|
||||
public function getConversations(int $userId): mixed
|
||||
|
||||
@@ -26,6 +26,14 @@ return Application::configure(basePath: dirname(__DIR__))
|
||||
})
|
||||
->withExceptions(function (Exceptions $exceptions): void {
|
||||
$exceptions->render(function(Throwable $e, $request) {
|
||||
if (
|
||||
$e instanceof \Illuminate\Validation\ValidationException ||
|
||||
$e instanceof \Illuminate\Auth\AuthenticationException ||
|
||||
$e instanceof \Illuminate\Auth\Access\AuthorizationException ||
|
||||
$e instanceof \Symfony\Component\HttpKernel\Exception\HttpException
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
$statusCode = method_exists($e, 'getStatusCode') ? $e->getStatusCode() : 500;
|
||||
|
||||
if( app()->environment('production') && $statusCode >= 500 && !$request->expectsJson() ){
|
||||
|
||||
@@ -122,6 +122,9 @@
|
||||
<x-entry-meta-item label="Release Date" value="{{ $entry->release_date->format('Y-m-d') }}"
|
||||
route="none"/>
|
||||
@endif
|
||||
@if( $entry->total_downloads )
|
||||
<x-entry-meta-item label="Downloads" value="{{ $entry->total_downloads }}" route="none" />
|
||||
@endif
|
||||
</div>
|
||||
<div class="hack-actions" style="display:flex;gap:10px;">
|
||||
@if($entry->state === 'pending')
|
||||
|
||||
Reference in New Issue
Block a user