mgsmus Merhaba hocam çok teşekkürler, şu şekilde çözmüştüm.
Öncelikle AppServiceProvider içinde şu şekilde bir macro oluşturdum.
RedirectResponse::macro('notify', function ($type, $title, $message) {
return $this->with('notify', [
'type' => $type,
'title' => $title,
'message' => $message,
]);
});
Daha sonra HerhangiBirController içinde aşağıdaki şekilde kullandım.
return redirect()->back()->notify('success', 'Title', 'Message');
Sonrasında views/components içinde notifications/default.blade.php adında bir component dosyası oluşturup şu şekilde düzenledim.
@if(session('notify'))
@php
$notify = session('notify');
@endphp
<div class="fixed inset-0 flex items-end justify-center px-4 py-6 pointer-events-none sm:p-6 sm:items-start sm:justify-end">
<div
x-data="{ show: true }" x-show="show" x-init="setTimeout(() => show = false, 2500)"
x-transition:enter="transform ease-out duration-300 transition"
x-transition:enter-start="translate-y-2 opacity-0 sm:translate-y-0 sm:translate-x-2"
x-transition:enter-end="translate-y-0 opacity-100 sm:translate-x-0"
x-transition:leave="transition ease-in duration-100"
x-transition:leave-start="opacity-100"
x-transition:leave-end="opacity-0"
class="max-w-sm w-full bg-white shadow-lg rounded-lg pointer-events-auto"
>
<div class="rounded-lg shadow-xs overflow-hidden">
<div class="p-4">
<div class="flex items-center">
<div class="flex-shrink-0">
@if($notify['type'] === 'success')
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-green-900" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
@endif
@if($notify['type'] === 'error')
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-red-900" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
@endif
@if($notify['type'] === 'info')
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-blue-900" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
@endif
@if($notify['type'] === 'warning')
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-orange-900" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
</svg>
@endif
</div>
<div class="ml-3 w-0 flex-1 pt-0.5">
<p class="@if($notify['type'] === 'success') {{ 'text-green-900' }} @endif
@if($notify['type'] === 'error') {{ 'text-red-900' }} @endif
@if($notify['type'] === 'info') {{ 'text-blue-900' }} @endif
@if($notify['type'] === 'warning') {{ 'text-orange-900' }} @endif font-medium text-md">{{ $notify['title'] }}</p>
<p class="@if($notify['type'] === 'success') {{ 'text-green-500' }} @endif
@if($notify['type'] === 'error') {{ 'text-red-500' }} @endif
@if($notify['type'] === 'info') {{ 'text-blue-500' }} @endif
@if($notify['type'] === 'warning') {{ 'text-orange-500' }} @endif text-sm leading-5 font-medium">{!! $notify['message'] !!}</p>
</div>
<div class="ml-4 flex-shrink-0 flex">
<button @click="show = false" class="inline-flex text-gray-400 focus:outline-none focus:text-gray-500 transition ease-in-out duration-150">
<svg class="h-5 w-5" viewBox="0 0 20 20" fill="currentColor">
<path fill-rule="evenodd" d="M4.293 4.293a1 1 0 011.414 0L10 8.586l4.293-4.293a1 1 0 111.414 1.414L11.414 10l4.293 4.293a1 1 0 01-1.414 1.414L10 11.414l-4.293 4.293a1 1 0 01-1.414-1.414L8.586 10 4.293 5.707a1 1 0 010-1.414z" clip-rule="evenodd"></path>
</svg>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
@endif
Sonrasında da çağırmak istediğim yerde aşağıdaki kod yardımıyla çağırıyorum.
<x-notifications.default />
Biraz zahmetli oldu ama şu sondaki haz gerçekten güzel. Tek satır kod ile çağırabilmek çok iyi. Daha mantıklı bir yol varsa denemeye açığım.