Skip to content

Commit

Permalink
Minor fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
l-alexandrov committed May 14, 2024
1 parent 2b6a647 commit fa66275
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion resources/views/themes/bimbala/blog/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<div class="flex-shrink-0">
<a href="{{ $post->link() }}">
<img class="object-cover w-full h-48" src="{{ $post->image() }}" alt="">
<img class="object-cover w-full h-48" src="{{ $post->image() }}" alt="{{ $post->title }} - blog post cover image">
</a>
</div>
<div class="relative flex flex-col justify-between flex-1 p-6 bg-white">
Expand Down
2 changes: 1 addition & 1 deletion resources/views/themes/bimbala/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
@include('theme::partials.header')

<main class="flex-grow overflow-x-hidden">
@unless (Request::is(['/', 'login', 'announcement*', 'pricing', 'register', 'dashboard', 'account/*', 'password/*', '@*', 'blog/*', '/tools/*']))
@unless (Request::is(['/', 'login', 'announcement*', 'notifications*', 'pricing', 'register', 'dashboard', 'account/*', 'password/*', '@*', 'blog/*', '/tools/*']))
<div class="bg-gray-900">
<div class="max-w-7xl mx-auto py-16 px-4 sm:py-20 sm:px-6 lg:px-8 lg:flex lg:justify-between">
<div class="max-w-xl">
Expand Down
8 changes: 6 additions & 2 deletions resources/views/themes/bimbala/profile.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,12 @@
<p class="max-w-lg mx-auto mt-3 text-base text-center text-gray-600">{{ $user->profile('about') }}</p>
</div>

<div class="flex flex-col w-full p-10 overflow-hidden bg-white border rounded-lg lg:w-2/3 border-gray-150 lg:flex-2">
<p class="text-lg text-gray-600">Your application info about {{ $user->name }} here</p>
<div class="flex flex-col w-full p-10 overflow-hidden bg-white border rounded-lg lg:w-2/3 border-gray-150 lg:flex-2 justify-center">
@subscriber
@if($user->subdomain_url)
<p class="text-lg text-gray-600 text-center">Your portal is live at <a href="{{ $user->subdomain_url }}" target="_blank" class="text-indigo-600">{{ $user->subdomain_url }}</a>.</p>
@endif
@endsubscriber
</div>

</div>
Expand Down
8 changes: 7 additions & 1 deletion wave/src/Http/Controllers/NotificationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@
class NotificationController extends Controller
{
public function index(){
return view('theme::notifications.index');
return view('theme::notifications.index', [
'seo' => [
'seo_title' => 'Notifications',
'seo_description' => 'Your notifications',
'keywords' => 'notifications, notification, notification list, missed notifications, read notifications, unread notifications'
]
]);
}

public function delete(Request $request, $id){
Expand Down

0 comments on commit fa66275

Please sign in to comment.