Тёмный

How To Send Notifications In Laravel | What Are Notification | Laravel Authentication & Mailing 

Code With Dary
Подписаться 62 тыс.
Просмотров 36 тыс.
50% 1

Опубликовано:

 

11 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 50   
@codewithdary
@codewithdary 2 года назад
LETS CONNECT THROUGH INSTAGRAM. www.Instagram.com/codewithdary
@EddieMao
@EddieMao Месяц назад
Clearly explained! thanks a lot!
@mharis2880
@mharis2880 2 года назад
typing sound is so cool 😀
@codewithdary
@codewithdary 2 года назад
It does, right?!
@sameera-dananjaya-wijerathna
@sameera-dananjaya-wijerathna 2 года назад
Awesome explanation !
@codewithdary
@codewithdary 2 года назад
Thank you Sameera! :)
@harhukam
@harhukam 2 года назад
very useful for me. thanks.
@codewithdary
@codewithdary 2 года назад
You are welcome Harhukam!
@da1kir
@da1kir 3 года назад
Thanks man, you're the best
@codewithdary
@codewithdary 3 года назад
You're welcome!
@nielsvandervlist3520
@nielsvandervlist3520 Год назад
Hi Dary, thanks for your videos. It sounds like you're dutch :) Can you make a video about broadcasting notifications?
@codewithdary
@codewithdary Год назад
Damn another one who found out ;) I have a tutorial about Broadcasting, but maybe you can combine both videos or your end result? ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-UwB5z6u7vt8.html&t
@sidney-richards
@sidney-richards 2 года назад
amazing stuff
@codewithdary
@codewithdary 2 года назад
Thank you Sidney :)
@jianyangli1306
@jianyangli1306 2 года назад
Thanks A lot
@codewithdary
@codewithdary 2 года назад
You are most welcome Jianyang!
@manto7
@manto7 3 года назад
Thanks man
@codewithdary
@codewithdary 3 года назад
You're welcome!
@DogBreakfast
@DogBreakfast 2 года назад
Thanks but there is no such things like "Fake Aids" in Laravel, just "facades" :)
@codewithdary
@codewithdary 2 года назад
Thank you!! :)
@jeanrakotoarison902
@jeanrakotoarison902 2 года назад
Thank you for this video
@codewithdary
@codewithdary 2 года назад
My pleasure Jean! :)
@SayaWRT
@SayaWRT 2 года назад
I have an error with routeNotificationfor() What wrong?
@saifbagmaru7596
@saifbagmaru7596 2 года назад
hey which extension do you use to beautify that command line of yours in blue and yellow strip which alongside shows your branch
@codewithdary
@codewithdary 2 года назад
Hi, please follow the following two links: ohmyz.sh/ github.com/ohmyzsh/ohmyzsh/wiki/Themes Or you could watch a video where I do it myself: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-bKUNHPvhsF0.html
@tayyabshahzad9933
@tayyabshahzad9933 2 года назад
I have created a mailable class & also I have attached a view with dynamic data. how can I fire email using notification with my own email template along with data which I am passing through my controller?
@hadidagher9443
@hadidagher9443 3 года назад
hay Dary, I appreciate what you do
@codewithdary
@codewithdary 3 года назад
How did you define your tokens/API keys? Are you talking about a bearer token?
@hadidagher9443
@hadidagher9443 3 года назад
@@codewithdary yes bearer tokens -after installing sanctum and migration -I added on User Model the following: use Laravel\Sanctum\HasApiTokens; use HasApiTokens; // as a trait - Api/AuthController.php [ register, login (issue token), logout(revoke tokens) ] - protecting api.php routs with sanctum middleware should I assign abilities to the tokens or gates with the correct permission on the (controllers, requests, resources) should be enough, like this: abort_if(Gate::denies('post_show'), Response::HTTP_FORBIDDEN, '403 Forbidden');
@rantunakrak6384
@rantunakrak6384 3 года назад
helpfull
@codewithdary
@codewithdary 3 года назад
Glad to hear that!!
@user-tt6nc6mo7k
@user-tt6nc6mo7k 3 года назад
Hi Dary, Is it possible to flash messages from notifications? I want to flash a message to the session when a queued job fails. But I do not know how to.
@codewithdary
@codewithdary 3 года назад
You need to return a message from your controller like this: Session::flash('message', 'This is a message!'); Session::flash('alert-class', 'alert-danger'); Then you can print it out inside your view like this: @if(Session::has('message')) {{ Session::get('message') }} @endif
@user-tt6nc6mo7k
@user-tt6nc6mo7k 3 года назад
@@codewithdary I need the session::flash to be called when a job fails though. How would my controller know when a job has failed.
@SathishKumar-hj9rc
@SathishKumar-hj9rc 2 года назад
hai possible to send mail with image using laravel notification
@codewithdary
@codewithdary 2 года назад
ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-jsZuz1q87xs.html
@karymelopez8345
@karymelopez8345 2 года назад
Hi! I don't know if someone can help me figure out why I get this error: Class 'App\Http\Controllers\TestEnrollment' not found
@codewithdary
@codewithdary 2 года назад
Have you imported the class?
@Devprecious
@Devprecious 2 года назад
It is testenrollmentcontroller
@anthonynnabude7826
@anthonynnabude7826 3 года назад
How do you config the email channel
@codewithdary
@codewithdary 3 года назад
Mailtrap!
@codewithdary
@codewithdary 3 года назад
I've got a separate video on it
@hawaicincocero8226
@hawaicincocero8226 3 года назад
Hi! How can I change the design of notification? anyway, thanks a lot for the video
@codewithdary
@codewithdary 3 года назад
First you need to publish the notification package’s resources php artisan vendor:publish --tag=laravel-notifications php artisan vendor:publish --tag=laravel-mail The colors and style are controlled by the CSS file in resources/views/vendor/mail/html/themes/default.css
@toyly2820
@toyly2820 Год назад
you should specify that video is bout email notification
@codewithdary
@codewithdary Год назад
You can send notifications of everything. I decided to send a email notification, anything else works in the same exact way
@toyly2820
@toyly2820 Год назад
@@codewithdary i was looking for broadcast notifications running away from everyone explaining email one, so i gave it a chance with hope it would be something different but you can imagine my reaction. Anyway thank you for your videos. I watch them a lot.
@yourgflikesit
@yourgflikesit 2 года назад
Bro learn how to pronoun “facades”
@codewithdary
@codewithdary 2 года назад
Yeah maybe next time ;)
Далее
Laravel Security: Top 7 Mistakes Developers Make
11:16
Эконом такси в твоем городе 😂
00:59
Standoff 2 is a true horror! #standoff #horror #meme
00:13
08 - Mail and Notifications
12:31
Просмотров 55 тыс.
Laravel 6 Advanced - e10 - Notifications
16:43
Просмотров 96 тыс.
Cursor Is Beating VS Code (...by forking it)
18:00
Просмотров 65 тыс.
Эконом такси в твоем городе 😂
00:59