WebMentor
WebMentor
  • Видео 507
  • Просмотров 228 171
Affordable Dedicated Servers Hosting (Recommendation) | Urdu & Hindi
[This is not a sponsored or promotional video. This is just a personal recommendation]
In this video, I have recommendations for VPS and dedicated server hosting. The three best options are Cloud, Server Finder, and Server Auction. Hetzner offers high-performance desktop processors with plenty of resources like CPU, RAM, and NVMe fast storage, ideal for web, database, or game server projects.
🧲 Website:
www.hetzner.com/
🧲 Timestamps:
00:00 - Introduction
00:25 - Cloud Servers
01:48 - Server Finder (Dedicated)
03:05 - Lower Tax & Currency Change
03:36 - Signup / Create Account Process
04:33 - Conclusion
🧲 Checkout our projects at GitHub:
github.com/webmentordev
🧲 VSCode:
● Font: Cascadia Code
● Theme: Ob...
Просмотров: 28

Видео

Easily Install Headless Chrome In Linux Server For Puppeteer | Urdu & Hindi
Просмотров 76Месяц назад
In this video, you will learn how to install and set up a headless Chrome browser on a Linux server or VPS for Puppeteer. There are two ways to install headless Chrome: using Node.js or downloading binaries. We will install the necessary packages on Linux to support and run Chrome. Additionally, we will demonstrate how you can use headless Chrome with Puppeteer. 🧲 Timestamps: 00:00 - Introducti...
Easily Install Latest Docker (Engine & CLI) On Linux VPS | Urdu & Hindi
Просмотров 19Месяц назад
In this video, you will learn how to install Docker Engine and Docker CLI along with their dependencies on a Linux server. We will also install Docker Compose to work with compose.yml files. The installation will use the official Docker script available on the get.docker.com website. 🧲 Checkout our projects at GitHub: github.com/webmentordev/linux-bash-scripts-and-solutions 🧲 VSCode: ● Font: Ca...
Live Coding On Linux Server (Remote VSCode) | Urdu & Hindi
Просмотров 25Месяц назад
In this video, you will learn how to live code on a Linux server using VSCode. We will install the Remote SSH extension in VSCode and then add the server's SSH credentials to connect to the server. 🧲 Timestamps: 00:00 - Introduction 00:38 - Install Extensions 01:03 - Adding New Host 02:06 - Open Folder 02:44 - Conclusion 🧲 Checkout our projects at GitHub: github.com/webmentordev 🧲 VSCode: ● Fon...
Setup GitHub Account With Linux (SSH Key) | Urdu & Hindi
Просмотров 26Месяц назад
In this video, you will learn how to link your GitHub account to a Linux server or VPS. We will demonstrate how to add your username and email, and then generate an SSH key to add to your GitHub account. 🧲 Timestamps: 00:00 - Introduction 00:28 - Create Linux VPS 00:45 - Update Packages & Install Git 01:16 - Setup GitHub Login Credientials 02:01 - Create & Add SSH Key in Github 03:10 - Testing ...
Throw Full Page Error | Nuxt 3 Tutorials #47 | Urdu & Hindi
Просмотров 18Месяц назад
In this video, you will learn how to display a full error page in Nuxt 3. You will also learn how to completely customize the error page and its messages. Additionally, we will explore how to trigger errors from external utilities or composables, such as Axios or fetch, rather than using only Nuxt's built-in features. 🧲 Timestamps: 00:00 - Introduction 00:41 - Create Error Page 00:57 - Error pa...
Read Single Blog (Route Model Binding) | Nuxt 3 Tutorials #46 | Urdu & Hindi
Просмотров 27Месяц назад
In this video, you will learn how to read a single blog from the backend in Nuxt 3. We will use route model binding to fetch blog details and return an error if the blog is not found. We will utilize route parameters from Nuxt to pass the value to the backend and retrieve the related blog data using its ID. 🧲 Timestamps: 00:00 - Introduction 00:10 - Process of Reading Blog 01:54 - Reading Page ...
Using daisyUI | Nuxt 3 Tutorials #45 | Urdu & Hindi
Просмотров 22Месяц назад
In this video, you will learn how to use DaisyUI in Nuxt 3. DaisyUI is the most popular component library for Tailwind CSS. It offers prebuilt, user-friendly components like tables, cards, and more, which you can use to save time on UI development. 🧲 Timestamps: 00:00 - Introduction 00:20 - Install DaisyUI 00:30 - Setup Config file 00:41 - Using DaisyUI 01:12 - Using Card 02:16 - Conclusion 🧲 C...
Upload Images In Nuxt 3 | Nuxt 3 Tutorials #44 | Urdu & Hindi
Просмотров 84Месяц назад
In this video, you will learn how to upload images using a Laravel API. We will demonstrate how to use FormData to read images and send them to the API. Additionally, we will explore how to create a custom disk in Laravel to upload images directly to the public folder and customize the response to return the complete image URL. 🧲 Timestamps: 00:00 - Introduction 00:28 - Create Blog Page 00:45 -...
Show API Message Alerts | Nuxt 3 Tutorials #43 | Urdu & Hindi
Просмотров 503 месяца назад
In this video, you will learn how to implement alerts in Nuxt 3. We will display API messages, such as success or failure notifications, using Nuxt components. Additionally, we will demonstrate how to reset old alert messages before handling and displaying the next API response. 🧲 Timestamps: 00:00 - Introduction 00:31 - Modify Alert Component 01:02 - Show Message 01:24 - Read Message from API ...
Using DELETE Data Laravel API | Nuxt 3 Tutorials #42 | Urdu & Hindi
Просмотров 413 месяца назад
In this video, you will learn how to create a Laravel Delete API for Nuxt 3. We will use the Delete API to remove todos from the database. Additionally, we will explore how to remove items from the frontend array simultaneously when they are deleted from the database. 🧲 Timestamps: 00:00 - Introduction 00:31 - Setup API function 01:18 - Create API Route 02:12 - Calling Delete API 04:17 - Testin...
Using API Resource for Response | Nuxt 3 Tutorials #41 | Urdu & Hindi
Просмотров 303 месяца назад
In this video, you will learn how to use APIResource in Laravel for Nuxt 3. APIResource provides more methods to customize API responses. PHP arrays do not return collections, so you cannot use pagination with them. Instead, you need to use APIResource and return a collection, which allows you to implement pagination. 🧲 Timestamps: 00:00 - Introduction 00:44 - Setup APIResource 01:40 - Read API...
API Response Formatting | Nuxt 3 Tutorials #40 | Urdu & Hindi
Просмотров 244 месяца назад
In this video, you will learn how to format or modify API responses for Nuxt 3 in Laravel 11. We will explore how to hide certain fields, change the data format, add links, and adjust the created_at date format or timezone, etc. 🧲 Timestamps: 00:00 - Introduction 00:36 - Reading Created date 01:08 - Formating API 01:52 - Using php map function 03:31 - How formating will work 03:44 - Testing new...
Fetch & Read Laravel APIs Data | Nuxt 3 Tutorials #39 | Urdu & Hindi
Просмотров 434 месяца назад
In this video, you will learn how to read data from APIs in Nuxt 3. Laravel returns column names as object keys, which are stored in an array. We will use $fetch to fetch data from an API when the user visits the page. In the setup script, you don't need to use async; you can use await with $fetch, and it will work. Additionally, before the page loads completely, a loading indicator will be dis...
API Error Handling | Nuxt 3 Tutorials #38 | Urdu & Hindi
Просмотров 324 месяца назад
API Error Handling | Nuxt 3 Tutorials #38 | Urdu & Hindi
POST or Store data in Database | Nuxt 3 Tutorials #37 | Urdu & Hindi
Просмотров 754 месяца назад
POST or Store data in Database | Nuxt 3 Tutorials #37 | Urdu & Hindi
Calling Laravel APIs | Nuxt 3 Tutorials #36 | Urdu & Hindi
Просмотров 394 месяца назад
Calling Laravel APIs | Nuxt 3 Tutorials #36 | Urdu & Hindi
SSR vs CSR vs Universal Rendering | Nuxt 3 Tutorials #35 | Urdu & Hindi
Просмотров 604 месяца назад
SSR vs CSR vs Universal Rendering | Nuxt 3 Tutorials #35 | Urdu & Hindi
Calling or Reading RESTFul APIs Data | Nuxt 3 Tutorials #34 | Urdu & Hindi
Просмотров 614 месяца назад
Calling or Reading RESTFul APIs Data | Nuxt 3 Tutorials #34 | Urdu & Hindi
File Input Component | Nuxt 3 Tutorials #33 | Urdu & Hindi
Просмотров 524 месяца назад
File Input Component | Nuxt 3 Tutorials #33 | Urdu & Hindi
Select field Component In Nuxt | Nuxt 3 Tutorials #32 | Urdu & Hindi
Просмотров 405 месяцев назад
Select field Component In Nuxt | Nuxt 3 Tutorials #32 | Urdu & Hindi
Input Field Component In Nuxt | Nuxt 3 Tutorials #31 | Urdu & Hindi
Просмотров 615 месяцев назад
Input Field Component In Nuxt | Nuxt 3 Tutorials #31 | Urdu & Hindi
Nuxt Loading Indicator | Nuxt 3 Tutorials #30 | Urdu & Hindi
Просмотров 2745 месяцев назад
Nuxt Loading Indicator | Nuxt 3 Tutorials #30 | Urdu & Hindi
Nuxt 3 Layouts | Nuxt 3 Tutorials #29 | Urdu & Hindi
Просмотров 265 месяцев назад
Nuxt 3 Layouts | Nuxt 3 Tutorials #29 | Urdu & Hindi
Dispatch (Emit) Events | Nuxt 3 Tutorials #28 | Urdu & Hindi
Просмотров 805 месяцев назад
Dispatch (Emit) Events | Nuxt 3 Tutorials #28 | Urdu & Hindi
Component Slots | Nuxt 3 Tutorials #27 | Urdu & Hindi
Просмотров 336 месяцев назад
Component Slots | Nuxt 3 Tutorials #27 | Urdu & Hindi
Component Prop Types | Nuxt 3 Tutorials #26 | Urdu & Hindi
Просмотров 436 месяцев назад
Component Prop Types | Nuxt 3 Tutorials #26 | Urdu & Hindi
Component Props | Nuxt 3 Tutorials #25 | Urdu & Hindi
Просмотров 416 месяцев назад
Component Props | Nuxt 3 Tutorials #25 | Urdu & Hindi
Nuxt Components | Nuxt 3 Tutorials #24 | Urdu & Hindi
Просмотров 466 месяцев назад
Nuxt Components | Nuxt 3 Tutorials #24 | Urdu & Hindi
Navigation and NuxtLink | Nuxt 3 Tutorials #23 | Urdu & Hindi
Просмотров 316 месяцев назад
Navigation and NuxtLink | Nuxt 3 Tutorials #23 | Urdu & Hindi

Комментарии

  • @cumacos65
    @cumacos65 2 дня назад

    Very grateful!! Greetings from the Bolivarian Republic of Venezuela!! A hug, brother !!

  • @Cartoonsplay9910
    @Cartoonsplay9910 13 дней назад

    Which testing framework do you prefer? [Pest]: [0] Pest [1] PHPUnit > Pest PHP Fatal error: Uncaught Error: Call to undefined function Laravel\Installer\Console\mb_rtrim() in C:\Users\umers\AppData\Roaming\Composer\vendor\laravel\installer\src\NewCommand.php:162 Stack trace: #0 C:\Users\umers\AppData\Roaming\Composer\vendor\symfony\console\Command\Command.php(279): Laravel\Installer\Console\NewCommand->execute() #1 C:\Users\umers\AppData\Roaming\Composer\vendor\symfony\console\Application.php(1029): Symfony\Component\Console\Command\Command->run() #2 C:\Users\umers\AppData\Roaming\Composer\vendor\symfony\console\Application.php(316): Symfony\Component\Console\Application->doRunCommand() #3 C:\Users\umers\AppData\Roaming\Composer\vendor\symfony\console\Application.php(167): Symfony\Component\Console\Application->doRun() #4 C:\Users\umers\AppData\Roaming\Composer\vendor\laravel\installer\bin\laravel(13): Symfony\Component\Console\Application->run() #5 C:\Users\umers\AppData\Roaming\Composer\vendor\bin\laravel(119): include('...') #6 {main} thrown in C:\Users\umers\AppData\Roaming\Composer\vendor\laravel\installer\src\NewCommand.php on line 162

  • @Hamzajamil-l2k
    @Hamzajamil-l2k 16 дней назад

    Discord mn user sy input lena ho wo kesy ly sakty ha

    • @WebMentorDev
      @WebMentorDev 16 дней назад

      @@Hamzajamil-l2k ap commands use kr skty hein input leny k liay

  • @Hamzajamil-l2k
    @Hamzajamil-l2k 16 дней назад

    Brother apka insta id ha?

  • @dr.k.sujani-8644
    @dr.k.sujani-8644 20 дней назад

    thank you sir it is working

  • @fasterisq2.1m76
    @fasterisq2.1m76 Месяц назад

    Instead of checking token present in cookie or not, i wrote code to send request to /getuser to api to check token validity in auth middleware, but it run repeatedly when visit different pages. How to solve it?

    • @WebMentorDev
      @WebMentorDev Месяц назад

      @@fasterisq2.1m76 check if middleware is global and also check if you are using this middleware in the default layout of those pages

    • @fasterisq2.1m76
      @fasterisq2.1m76 Месяц назад

      @WebMentorDev but we can't set middleware for layouts

    • @WebMentorDev
      @WebMentorDev Месяц назад

      @@fasterisq2.1m76 there is a work around but you can use global middleware with 'to' to check the next route and perform validation accordingly. Did you create /getuser in nuxt server api?

  • @kbeat4135
    @kbeat4135 Месяц назад

    Can show us how to deploy this kind of web application? With Nuxt and Laravel..

    • @WebMentorDev
      @WebMentorDev Месяц назад

      @@kbeat4135 sure. will do in 2 days

    • @kbeat4135
      @kbeat4135 Месяц назад

      ​@@WebMentorDev nice, looking forward to it!

  • @iredtm4812
    @iredtm4812 Месяц назад

    Great tut, working well on my vps

  • @geckomaker
    @geckomaker 2 месяца назад

    Thanks for your help!

  • @XBilgate
    @XBilgate 2 месяца назад

  • @drewo194
    @drewo194 2 месяца назад

    I have been struggling for days. This solved my issues. Thanks!

  • @geekmaros
    @geekmaros 2 месяца назад

    you didnt use the default Auth that laravel breeze provides

    • @WebMentorDev
      @WebMentorDev 2 месяца назад

      @@geekmaros yes. that's cookie based. you have to call the apis twice, one to set the cookie then read that cookie manually using cookie composable the pass it to the api that will call the main api (like we used token in the header)

    • @geekmaros
      @geekmaros 2 месяца назад

      @ any advantage of one over the other ??

    • @WebMentorDev
      @WebMentorDev 2 месяца назад

      @geekmaros this token way is way simple. other one is highly recommended which is also prioritized in the documentation but require alot more steps like reading cookie value and passing into the header which also causes problem with nuxt api routes. If you use axios then cookie is automatically injected into the header. $fetch like utils have to do cookie injection manually

  • @sethbrown1763
    @sethbrown1763 2 месяца назад

    Thank you for sharing this video! Very useful. BTW, I speak neither Urdu nor Hindi but I still got the gist of your explanation. Well done!

  • @sethbrown1763
    @sethbrown1763 2 месяца назад

    Thank you for sharing this video! Precisely what I was looking for! You got to the point quickly and focused on the correct information immediately. Well done!

  • @Shahzaib_943
    @Shahzaib_943 3 месяца назад

    If i buy Hostinger Premium Webshosting (with hpanel and free domain), will i get terminal access to run laravel commands like "php artisan migrate", etc and will i get SSH access to setup github action (for auto push to server) and can i setup different PHP versions for each subdomain???

    • @WebMentorDev
      @WebMentorDev 3 месяца назад

      @@Shahzaib_943 yes. i think you get the terminal or ssh access

  • @RafAlmo-w9i
    @RafAlmo-w9i 3 месяца назад

    Nice tutorial

  • @materangics6984
    @materangics6984 3 месяца назад

    Why deleting? Can't we resize? I have many VMs CTs on the local-lvm, so I cannot delete. I need resize, how to do that?

    • @WebMentorDev
      @WebMentorDev 3 месяца назад

      @@materangics6984 may be you can use other drive instead of deleting local-lvm. Ask chatgpt, it ca help you better asi have not used proxmox for a long time

  • @DevelopmentAltıniş
    @DevelopmentAltıniş 3 месяца назад

    thank u dude

  • @MuhammadMursaleen-wx8ig
    @MuhammadMursaleen-wx8ig 3 месяца назад

    great appreciation for Your hardworking. Highly Recommended.

  • @salmanqazi2926
    @salmanqazi2926 4 месяца назад

    when i get CSRF token and then login, it always showing 419 unknow status.

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      @@salmanqazi2926 set axios withCredientials to true make sure the session domain in laravel is the domain of your frontend

  • @tracid56
    @tracid56 4 месяца назад

    Thanks for this vidéo ! I was stuck with no space and now all my ssd can be used ! Thank you !

  • @emali1683
    @emali1683 4 месяца назад

    This is good tutorial but i think you can't access the DB with env credential. What do you think? Because database is stored in online hosting service . I think its not possible

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      DB has to be enabled to be accessible over the internet. Most DBs are only accessible over the localhost and the website has to be hosted on the same server.

    • @emali1683
      @emali1683 4 месяца назад

      @@WebMentorDev THen its mean if the DBs are only accessible over the localhost we can't access them?

    • @emali1683
      @emali1683 4 месяца назад

      @@WebMentorDev Basically I'm new to laravel. many client ka project bana or deploy kar deya. ab agr kissi kay pass us ki env file a gi tu wo kis tarha db access kar sakta h. baki credential ki baate tu smaj atti h.

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      @@emali1683 env file say App_key hei jis ko use kr k password encrypt hoon gaay. agar wo key mil jay or db access ho jay to decrypt ho jaain gaay password. Most developers same DB or projects k sath b use krty hein is k liay over the internet access enable krna hota hei. Aksar 3rd party service like AWS RDS ya SMTP us k credientials b env file mein hoty hein. wo phir easily access ho jaya hei

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      @@emali1683 you have to enable the access other than localhost otherwise DB like mysql is only accessible on localhost

  • @TECH__SHUBHAM
    @TECH__SHUBHAM 4 месяца назад

    bhai maine server bna liya but agar mujhe apne server ka access mere friend ko dena hai to kaise de ? taki wo server on kar ske

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      @@TECH__SHUBHAM serverhosting pay hei to port say access ho ga. agar pc pay bnaya hei to ap ko static ip shaye ISP say. us k through access ho ga

    • @TECH__SHUBHAM
      @TECH__SHUBHAM 4 месяца назад

      @@WebMentorDev server banane ke baad friend ko kaise add kare

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      @@TECH__SHUBHAM server mein admin add ka game admin docs say pta chaly ga. Server access system pay depend krta hei

    • @TECH__SHUBHAM
      @TECH__SHUBHAM 4 месяца назад

      @@WebMentorDev samjha nhi aaya

    • @TECH__SHUBHAM
      @TECH__SHUBHAM 4 месяца назад

      @@WebMentorDev main server me join kar liya aur acche se chal bhi rha hai but agar friends ko add karna hai to kaise karu

  • @TECH__SHUBHAM
    @TECH__SHUBHAM 4 месяца назад

    ark ki server kaise banaye

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      @@TECH__SHUBHAM steam ki game list check karin. agar wahan ho ga to ap ko script b mil jay gi

    • @TECH__SHUBHAM
      @TECH__SHUBHAM 4 месяца назад

      @@WebMentorDev hai waha par kya aapne jo tutorial diya hai rust ka uske help se ark server ban skta hai

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      @@TECH__SHUBHAM her game k server ko start krnay ka tarika hota hei. rust ki apni commands hein or ark ki apni hoon gi.

    • @TECH__SHUBHAM
      @TECH__SHUBHAM 4 месяца назад

      @@WebMentorDev can you please help me to find script for ark

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      @@TECH__SHUBHAM hub.tcno.co/games/asa/dedicated_server/#:~:text=You%20can%20now%20download%20and,on%20another%20account%20%2D%20like%20before.

  • @justasarbatauskis9044
    @justasarbatauskis9044 4 месяца назад

    up

  • @justasarbatauskis9044
    @justasarbatauskis9044 4 месяца назад

    can you make some simple project with laravel/nuxt/auth

    • @WebMentorDev
      @WebMentorDev 4 месяца назад

      i can but i can not promise because it takes time to record and edit. There is other work still pending. I will try my best to make something out of Nuxt & Laravel 🙂

  • @colorful_nature_4131
    @colorful_nature_4131 5 месяцев назад

    awesome video bhai, im your new subscriber please make complete ecommerce project with livewire

  • @NilanjanChakraborty-i4l
    @NilanjanChakraborty-i4l 5 месяцев назад

    simple, short and awesome video

  • @Muhammadijaz-pt4td
    @Muhammadijaz-pt4td 5 месяцев назад

    thanks for creating best playlist

  • @Muhammadijaz-pt4td
    @Muhammadijaz-pt4td 5 месяцев назад

    perfect :)

  • @justasarbatauskis9044
    @justasarbatauskis9044 5 месяцев назад

    thank you very much, please make more laravel nuxt project examples

  • @justasarbatauskis9044
    @justasarbatauskis9044 5 месяцев назад

    letsss gooo

  • @scientistakasha7293
    @scientistakasha7293 5 месяцев назад

    Just WOW

  • @Shahzaib_943
    @Shahzaib_943 5 месяцев назад

    Wow. Finally understood the authentication with breeze API. Everyone was using the custom auth routes and controller but you explained it very well.

  • @upByNune
    @upByNune 5 месяцев назад

    Thanks man! much appreciated!

  • @bd14385
    @bd14385 5 месяцев назад

    Where i Can create PHP files plz tell me bro

    • @WebMentorDev
      @WebMentorDev 5 месяцев назад

      @@bd14385 template php files are created inside the resources/views folder. .phl files depends on the functionality you want to take.

  • @anasrajput9379
    @anasrajput9379 5 месяцев назад

    please share the livewire project playlist link

  • @umad0p
    @umad0p 5 месяцев назад

    Thanks this was a big help for me. tobad i wasted a few hours trying to do it anouther way with vnc

  • @WALOGAMERZ0
    @WALOGAMERZ0 6 месяцев назад

    DOST static ip live kase kare

    • @WebMentorDev
      @WebMentorDev 6 месяцев назад

      @@WALOGAMERZ0 linux mein ya overall internet?

  • @utkucanbars1453
    @utkucanbars1453 6 месяцев назад

    Thank you

  • @khanaqib7871
    @khanaqib7871 6 месяцев назад

    subscribe too bantaa hai. zabardast video.

  • @minhducaaa
    @minhducaaa 6 месяцев назад

    You saved my life! Thank you so much!

  • @dubey27pratyush
    @dubey27pratyush 6 месяцев назад

    nice video

  • @DarkuSAMA
    @DarkuSAMA 6 месяцев назад

    bro my bot is not going online only showing resart

    • @WebMentorDev
      @WebMentorDev 6 месяцев назад

      @@DarkuSAMA they have updated the discordjs long time ago. the way you initialize the bot is different you should checkout the guide on discordjs guide

  • @abaaulazahiq6840
    @abaaulazahiq6840 6 месяцев назад

    Thank you for your information ❤❤❤

  • @SkysimAir
    @SkysimAir 7 месяцев назад

    Next time, please talk even faster. I was able to follow to some instructions in this video.

    • @WebMentorDev
      @WebMentorDev 7 месяцев назад

      @@SkysimAir increase playback speed. Easy

  • @rjx-dev
    @rjx-dev 7 месяцев назад

    Love from india brother keep it up ❤🎉

  • @anansoft1260
    @anansoft1260 7 месяцев назад

    Good job👍👍

  • @miltonchowdhury4016
    @miltonchowdhury4016 7 месяцев назад

    thanks a lot, sir.....for starting the Nuxt 3 series....plz sir keep continuing this series with real-world projects like HTML them to Nuxt 3 convert, etc......Thanks once again......🙂

  • @perfectwebsolutions
    @perfectwebsolutions 7 месяцев назад

    sanctum vs breez for laravel api?

    • @WebMentorDev
      @WebMentorDev 7 месяцев назад

      @@perfectwebsolutions breeze is the starter kit. We used breeze starter kit to install sanctum and optimized the code for api only

    • @perfectwebsolutions
      @perfectwebsolutions 7 месяцев назад

      @@WebMentorDev can't we use sanctum without using any other starter kit? because sanctum itself called a starter kit used for API or token based authentication?

    • @WebMentorDev
      @WebMentorDev 7 месяцев назад

      @@perfectwebsolutions we can but breeze itself is not the api. breeze uses sanctum api but it optimizes the project for frontend. Like the password reset links e.t.c, they will have the frontend links in the emails. Breeze api also remove all the blade templates from the code

    • @perfectwebsolutions
      @perfectwebsolutions 7 месяцев назад

      @@WebMentorDev ohh Ook so you will build frontend for password reset and email verification etc in laravel not using API

    • @WebMentorDev
      @WebMentorDev 7 месяцев назад

      @@perfectwebsolutions yes that's why we have Laravel API. Why should we use Laravel blade template when we are using Nuxt 3 or any frontend framework? it defeats the whole purpose of having a frontend framework if you are dividing the code. We always keep webpages on frontend framework (Vue,Nuxt,Next,React e.t.c) and use backend system on backend code (Php, laravel, Django, python e.t.c)