codewithtee
codewithtee
  • 49
  • 18 572
Rest API: Create and Generate Default Wallets (Part 24)
Rest API: Create Wallet and Generate Default Wallet (Part 24)
I will walk you through creating a custom wallet and generating a default wallet for users in the system.
Join me by subscribing, sharing with friends, and turning on notifications to stay updated on new episodes.
BUY ME A COFFEE 🔥 : buymeacoffee.com/codewithtee
มุมมอง: 3

วีดีโอ

Rest API: Database Transaction Using GORM(Part 23)
มุมมอง 294 ชั่วโมงที่ผ่านมา
Rest API: Database Transaction In Echo Framework Using GORM(Part 23) I will walk you through refactoring the endpoints for updating and creating budgets to ensure those processes are wrapped into the database transaction and achieve the database's ACID principle. Join me by subscribing, sharing with friends, and turning on notifications to stay updated on new episodes. BUY ME A COFFEE 🔥 : buyme...
Rest API: Delete User Budgets Using GORM(Part 22)
มุมมอง 127 ชั่วโมงที่ผ่านมา
Rest API: Delete User Budgets In Echo Framework Using GORM(Part 22) I will walk you through deleting user budgets and associated categories Join me by subscribing, sharing with friends, and turning on notifications to stay updated on new episodes. BUY ME A COFFEE 🔥 : buymeacoffee.com/codewithtee
Rest API: Update User Budgets Using GORM(Part 21)
มุมมอง 217 ชั่วโมงที่ผ่านมา
Rest API: Update User Budgets In Echo Framework Using GORM(Part 21) I will walk you through updating user budgets and associated categories. You will learn how to 1. Ensure user does not create duplicate categories 2. Exclude the uniqueness check for a specific Budget model Join me by subscribing, sharing with friends, and turning on notifications to stay updated on new episodes. BUY ME A COFFE...
Rest API: List User Budgets (Part 20)
มุมมอง 3014 ชั่วโมงที่ผ่านมา
Rest API: List User Budgets Echo Framework Using GORM(Part 20) I will walk you through listing user budgets and preloading their associated categories. You will learn how to 1. Use Gorm Scope 2. Filter budgets by currently authenticated user ID Join me by subscribing, sharing with friends, and turning on notifications to stay updated on new episodes. BUY ME A COFFEE 🔥 : buymeacoffee.com/codewit...
Rest API: Create User Budget (Part 19)
มุมมอง 3816 ชั่วโมงที่ผ่านมา
Rest API: Create Budget In Echo Framework Using GORM(Part 19) I will walk you through creating budgets and assigning categories to the budget. You will learn how to 1. Create foreign keys and reference the parent table on the budget model 2. Define Many-to-many relationships between the Budget and Category Models. 3. Define database constraints for delete actions. 4. Creating index and composit...
Rest API: Create Custom Categories & User Associations (M2M GORM) In Golang Echo Framework(Part 18)
มุมมอง 8014 วันที่ผ่านมา
Rest API: Create Custom Categories & User Associations (M2M GORM) In Golang Echo Framework(Part 18) I will walk you through creating custom categories by an authenticated user and association categories selected by the user using GORM many-to-many relationships. You will learn how to. Allowing users to create and manage their own custom categories. Efficiently associating categories with users ...
REST API: Implement Pagination In Using GORM(Part 17)
มุมมอง 5728 วันที่ผ่านมา
Rest API: Pagination Using Gorm In Echo Framework Using GORM(Part 17) I will walk you through the process of paginating your model and how to apply page value and limit value. Join me on this journey by subscribing, sharing with friends, and turning on notifications to stay updated on new episodes. BUY ME A COFFEE 🔥 : buymeacoffee.com/codewithtee
Rest API: CRUD Budget Categories Using GORM(Part 16)
มุมมอง 120หลายเดือนก่อน
Rest API: CRUD Category In Golang Echo Framework Using GORM(Part 16) I will walk you through the process of Creating, Reading, and Deleting Budget Categories using GORM. You will learn how to validate user requests, compare request input data, and create, delete and retrieve data from the database using GORM. You will also learn how to seed data from the command line into your database. Join me...
How To Dockerize Nest JS APP (Node JS, Mysql PHPMyAdmin)
มุมมอง 87หลายเดือนก่อน
BUY ME A COFFEE 🔥 : buymeacoffee.com/codewithtee Welcome to our comprehensive tutorial on how to dockerize a Nest JS application! In this video, I will guide you step-by-step through setting up a Docker environment for your Nest JS/Node JS project. What You'll Learn: 1. Setting up a multi-container Docker environment for a Nest/Node JS application. 2. Configuring services such as NodeJs, MySQL ...
How To Dockerize Nest JS APP (Node JS) in 20 Minutes
มุมมอง 85หลายเดือนก่อน
Learn How to dockerize a nest js application using a docker file and docker-compose.
How to Dockerize Vue App With Hot Reloading (HRM)
มุมมอง 2862 หลายเดือนก่อน
Learn how to dockerize your vue js application with hot realoading
Rest API: Forgot Password and Reset Password In Golang Echo Framework(Part 15)
มุมมอง 2253 หลายเดือนก่อน
Rest API: Forgot Password and Reset Password In Golang Echo Framework(Part 15) I will walk you through the process of implementing the forgot and reset password functionality. You will learn how to validate user requests, compare request input data, send user emails, generate a forgotten password token, validate the forgotten password token, encode user emails into a URL, and decode encoded bas...
Rest API: How to Change/Update Authenticated User Password In Golang Echo Framework(Part 14)
มุมมอง 1293 หลายเดือนก่อน
Rest API: Rest API: How to Group Route In Golang Echo Framework(Part 13) I will walk you through changing an authenticated user password in this part. You will learn how to validate user requests, compare request input data, compare existing user passwords with the supplied current password and send custom validation messages. Join me on this journey by subscribing, sharing with friends, and tu...
Rest API: How to Group Route In Golang Echo Framework(Part 13)
มุมมอง 763 หลายเดือนก่อน
BUY ME A COFFEE 🔥 : buymeacoffee.com/codewithtee Rest API: Rest API: How to Group Route In Golang Echo Framework(Part 13) In this part, I walk you through the process of grouping our routes and separating routes that require authentication. Join me on this journey by subscribing, sharing with friends, and turning on notifications to stay updated on new episodes. BUY ME A COFFEE 🔥 : buymeacoffee...
Rest API: How to Authenticate User & Get Authenticated User (JWT) In Golang Echo Framework(Part 12)
มุมมอง 1463 หลายเดือนก่อน
Rest API: How to Authenticate User & Get Authenticated User (JWT) In Golang Echo Framework(Part 12)
Rest API: User Login and JWT token Generation In Golang Echo Framework(Part 11)
มุมมอง 4353 หลายเดือนก่อน
Rest API: User Login and JWT token Generation In Golang Echo Framework(Part 11)
How to Dockerize Laravel APP (PHP, Nginx, MySQL, PhpMyAdmin, and Redis.)
มุมมอง 6K5 หลายเดือนก่อน
How to Dockerize Laravel APP (PHP, Nginx, MySQL, PhpMyAdmin, and Redis.)
Rest API: Send Email Notification Using SMTP In Golang Echo Framework(Part 10)
มุมมอง 1806 หลายเดือนก่อน
Rest API: Send Email Notification Using SMTP In Golang Echo Framework(Part 10)
Rest API: User registration and Password Hashing (Part 9)
มุมมอง 2476 หลายเดือนก่อน
Rest API: User registration and Password Hashing (Part 9)
Rest API: Create & Use Response Helpers for Consistent Client Replies In Echo Framework(Part 8)
มุมมอง 1326 หลายเดือนก่อน
Rest API: Create & Use Response Helpers for Consistent Client Replies In Echo Framework(Part 8)
Rest API: Request Validation Using Go Playground Validator In Echo Framework(Part 7)
มุมมอง 4896 หลายเดือนก่อน
Rest API: Request Validation Using Go Playground Validator In Echo Framework(Part 7)
Rest API: Parsing & Binding Request Body In Golang Echo Framework(Part 6)
มุมมอง 2016 หลายเดือนก่อน
Rest API: Parsing & Binding Request Body In Golang Echo Framework(Part 6)
Rest API: Gorm Creating Model, Migration & Database In Golang Echo Framework(Part 5)
มุมมอง 2716 หลายเดือนก่อน
Rest API: Gorm Creating Model, Migration & Database In Golang Echo Framework(Part 5)
Rest API: Understand Middleware In Golang Echo Framework(Part 4)
มุมมอง 1956 หลายเดือนก่อน
Rest API: Understand Middleware In Golang Echo Framework(Part 4)
Rest API: Routing/Handler Setup In Golang Echo Framework (Part 3)
มุมมอง 2876 หลายเดือนก่อน
Rest API: Routing/Handler Setup In Golang Echo Framework (Part 3)
Rest API: Setup Database Connection For GORM (Building a Budgeting Backend with Golang Part 2)
มุมมอง 3496 หลายเดือนก่อน
Rest API: Setup Database Connection For GORM (Building a Budgeting Backend with Golang Part 2)
Rest API: Introduction to Echo Framework (Building a Budgeting Backend with Golang Part 1)
มุมมอง 7406 หลายเดือนก่อน
Rest API: Introduction to Echo Framework (Building a Budgeting Backend with Golang Part 1)
Rest API: Project Overview and Functional Requirement (Building a Budgeting App Backend with Golang)
มุมมอง 1K7 หลายเดือนก่อน
Rest API: Project Overview and Functional Requirement (Building a Budgeting App Backend with Golang)
Retrieving Transaction History and Categorization - Laravel Banking Application API (MVP)(Part 12)
มุมมอง 36110 หลายเดือนก่อน
Retrieving Transaction History and Categorization - Laravel Banking Application API (MVP)(Part 12)

ความคิดเห็น

  • @ungueie
    @ungueie 3 วันที่ผ่านมา

    Thanks for the video! A couple questions: 1) why dont you use the default ports? ie. for mysql, redis, etc. 2) wouldn't it be more efficient to put all the services in a single docker file? instead of a container for each, which I imagine would require more resources if you want to use this ie. on a cheap VPS

    • @codewithtee
      @codewithtee 3 วันที่ผ่านมา

      @@ungueie I have redis ant MySQL on my local machine and it also a way to let you know you can customize it if you already have an instance of those services running. Customization is not easy in docker file and it can quite difficult to understand.. Docker compose file provides the flexibility you need and this does not affect the size of your docker containers.

    • @ungueie
      @ungueie 2 วันที่ผ่านมา

      @@codewithtee Thanks! Have a nice rest of the weekend!

  • @jhongrsng
    @jhongrsng 6 วันที่ผ่านมา

    Halo @codewithtee, why my requests in this part not works like u?

    • @codewithtee
      @codewithtee 6 วันที่ผ่านมา

      @@jhongrsng can you provide more context, can you share the error you got?

    • @jhongrsng
      @jhongrsng 5 วันที่ผ่านมา

      @@codewithtee {"time":"2024-12-12T23:24:19.077485+07:00","level":"-","prefix":"echo","file":"auth_handler.go","line":"33","message":"<nil>"} the message i got <nil> func (h *Handler) RegisterHandler(c echo.Context) error { payload := new(requests.RegisterUserRequest) if err := (&echo.DefaultBinder{}).BindBody(c, payload); err != nil { c.Logger().Error(err) return c.String(http.StatusBadRequest, "bad request") } c.Logger().Info(payload) c.Logger().Info("parsed payload: ", payload) var validate *validator.Validate validate = validator.New(validator.WithRequiredStructEnabled()) validationErrors := validate.Struct(payload) c.Logger().Print(validationErrors) return c.String(http.StatusBadRequest, "good request") }

  • @laravelug
    @laravelug 6 วันที่ผ่านมา

    Thanks for the tutorial, kindly do a front end integration with the bank api u developed in react js

    • @codewithtee
      @codewithtee 6 วันที่ผ่านมา

      I do not do frontend

    • @laravelug
      @laravelug 6 วันที่ผ่านมา

      @codewithtee hmmm, eeeh it's better to start now

  • @ChuanyiXia
    @ChuanyiXia 9 วันที่ผ่านมา

    「Echo FrameworkによるRest APIの紹介」の投稿、とても興味深かったです!Golangを使って予算管理バックエンドを構築する方法が具体的で、特にEchoフレームワークの軽量で高性能な特性が際立っています。シンプルで効率的なAPI設計が可能で、今後のバックエンド開発にとても役立ちそうです。次回のパートも楽しみにしています!ありがとうございました。

    • @codewithtee
      @codewithtee 3 วันที่ผ่านมา

      Thank you for your kind words and for your interest in the series!

  • @leinah3671
    @leinah3671 14 วันที่ผ่านมา

    Is it necessary to have arg user and uid??

    • @codewithtee
      @codewithtee 14 วันที่ผ่านมา

      @@leinah3671 if you don't, the root user owns the files and you will start facing permission issue later.

    • @leinah3671
      @leinah3671 14 วันที่ผ่านมา

      @@codewithtee Thanks for explanation

    • @leinah3671
      @leinah3671 14 วันที่ผ่านมา

      @@codewithtee Do you think, you method can be also doable with react?

    • @codewithtee
      @codewithtee 14 วันที่ผ่านมา

      @@leinah3671 follow this tutorial th-cam.com/video/ZCLRgor-WZ8/w-d-xo.htmlsi=cfzlXBU6SFavoI2v It is compatible to react

    • @leinah3671
      @leinah3671 14 วันที่ผ่านมา

      @@codewithtee Funny thing I did this tutorial and finished it. But the port 6162 was white only. I think i should also add the react here

  • @AlexTitarenko87
    @AlexTitarenko87 15 วันที่ผ่านมา

    Good tutorial! I think it wouldn't hurt if you make some notes prior to recording so it is a little bit more organized. Keep up the good work!

    • @codewithtee
      @codewithtee 15 วันที่ผ่านมา

      @@AlexTitarenko87 thank you very much Alex.. I am trying to get better. I appreciate your comment

  • @underflowexception
    @underflowexception 21 วันที่ผ่านมา

    github link?

    • @codewithtee
      @codewithtee 21 วันที่ผ่านมา

      check the description

  • @oladelesamuel7773
    @oladelesamuel7773 21 วันที่ผ่านมา

    Great video

  • @ibagitated
    @ibagitated หลายเดือนก่อน

    I am really enjoying your video - you explain every step so I that, as a beginner with Docker, I get to understand why I'm doing what you're asking me to do. Keep up the great service to our community!

    • @codewithtee
      @codewithtee หลายเดือนก่อน

      @@ibagitated I am happy you enjoyed it. Let me know what you would like me to publish

  • @cristianbarrios5519
    @cristianbarrios5519 หลายเดือนก่อน

    I really appreciate it

  • @Noaman2022
    @Noaman2022 2 หลายเดือนก่อน

    Can this work for laravel 10 ?

  • @JailadinShaik8897
    @JailadinShaik8897 2 หลายเดือนก่อน

    very helpful video, thanks

  • @jawadyaakoub5513
    @jawadyaakoub5513 2 หลายเดือนก่อน

    thx allot bro for helping laravel devs and i will wach and fwollo ever step in this project

  • @ALiHameedAlHashemi
    @ALiHameedAlHashemi 2 หลายเดือนก่อน

    very goood

  • @albaprogrammer2710
    @albaprogrammer2710 2 หลายเดือนก่อน

    thanks for your tutorial sir. how about dockerize laravel in production environment ? can you give best practice for it? i would be happy if you colud make the video tutorial 😊🙏

    • @codewithtee
      @codewithtee 2 หลายเดือนก่อน

      @@albaprogrammer2710 this works in production as well... The only difference is, in production you just swap your database credentials and all.. Also in production you will run your docker in detached mode.

    • @albaprogrammer2710
      @albaprogrammer2710 2 หลายเดือนก่อน

      ​@@codewithtee hmmm okey, but what about optimization ? maybe we can more optimize the Dockerfile, ex we can use php:8.3-alpine, also remove useless code like tests folder, etc. or maybe we use the multistage sorry if i'm wrong 🙏

    • @albaprogrammer2710
      @albaprogrammer2710 2 หลายเดือนก่อน

      i try to build the image from your Dockerfile, and the size of image is 740MB. is that normal ? or maybe it can still be optimized again ?

    • @codewithtee
      @codewithtee 2 หลายเดือนก่อน

      @@albaprogrammer2710 php apline is only lighter in terms of size, tests folders are never going to be the reason your application is slow....

    • @codewithtee
      @codewithtee 2 หลายเดือนก่อน

      @@albaprogrammer2710 I don't think you need to push to docker image, it is not a necessity... If you want a docker file or configuration specific for prod, you can create another docker compose file that you will only run in production, you can pass the name of your docker compose file

  • @AbrahamAnavheoba
    @AbrahamAnavheoba 3 หลายเดือนก่อน

    thank you bro

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      thank you ):

  • @AbrahamAnavheoba
    @AbrahamAnavheoba 3 หลายเดือนก่อน

    when i try to run your code on laravel 11(the latest version) i always get an error how do you think i can fix that

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      @@AbrahamAnavheoba can you share the error you getting?

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      Can you share the error?

  • @AlirezaPd-j8v
    @AlirezaPd-j8v 3 หลายเดือนก่อน

    thanks for your great video.i get this error when i run docker-compose build command: services.laravel_eleven_app.build must be a string. could you plz give me a solution how to fix this??

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      @@AlirezaPd-j8v invite me to the repo, I need to see your docker and docker compose file #harmlessprince

  • @abrahamwisdom3312
    @abrahamwisdom3312 3 หลายเดือนก่อน

    Bro Do u have this code on your github

  • @charles-harisbouassebukomb8133
    @charles-harisbouassebukomb8133 3 หลายเดือนก่อน

    do you think that with apache it will be the same process???

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      @charles-harisbouassebukomb8133@@charles-harisbouassebukomb8133 apache will be quite different, you will need another Dockerfile for that

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      I will try to create one for apache

    • @charles-harisbouassebukomb8133
      @charles-harisbouassebukomb8133 3 หลายเดือนก่อน

      @@codewithtee okay, I’m currently working on it, your video was really helpful, but I am still stacked because the conf file in my local sever was not transferred to the container

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      make sure you are mounting your config in the right path.. If you still can't figure it out.. Shoot me a mail realolamilekan@gmail.com

    • @charles-harisbouassebukomb8133
      @charles-harisbouassebukomb8133 3 หลายเดือนก่อน

      @@codewithtee alright

  • @dvfb
    @dvfb 3 หลายเดือนก่อน

    thanks for this video, i follow this step very powerful

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      thank you, please share and like 😁

  • @dvfb
    @dvfb 3 หลายเดือนก่อน

    Please upload video usually. Thanks for this tutorials

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      Thanks for your kind words, will try to do better

  • @fujiwara1977
    @fujiwara1977 3 หลายเดือนก่อน

    can't we use app.handler, like we use app.server in routes.go ? is it really necessary to pass it as a param in main.,go ?

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      You can do it like that, at that moment that was my thought process. Also I didn't like the idea of app.handler.RouteMethod, it is just choice. Thanks for calling that to my attention 😇

    • @fujiwara1977
      @fujiwara1977 3 หลายเดือนก่อน

      @@codewithtee no problem, just got curious :)

  • @anonymousnumb.6765
    @anonymousnumb.6765 3 หลายเดือนก่อน

    where is the sourcecode

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      github.com/harmlessprince/banking-app-api.git @anonymousnumb.6765

  • @AlexTitarenko87
    @AlexTitarenko87 4 หลายเดือนก่อน

    great tutorials, keep it up man!

    • @codewithtee
      @codewithtee 4 หลายเดือนก่อน

      thank you alex, I appreciate

  • @famakinwatemitope8983
    @famakinwatemitope8983 4 หลายเดือนก่อน

    Will the setup work with laravel 8 too?

  • @famakinwatemitope8983
    @famakinwatemitope8983 4 หลายเดือนก่อน

    God bless you for the video

    • @codewithtee
      @codewithtee 4 หลายเดือนก่อน

      Thank you very much, I am happy you found it helpful

    • @codewithtee
      @codewithtee 4 หลายเดือนก่อน

      Yes, it will.. Just be sure the php version matches the laravel version

  • @_nirajghimire
    @_nirajghimire 4 หลายเดือนก่อน

    source code??

    • @codewithtee
      @codewithtee 3 หลายเดือนก่อน

      github.com/harmlessprince/banking-app-api

  • @stormz4261
    @stormz4261 5 หลายเดือนก่อน

    help i follow everything but im having trouble with requesting the API

    • @codewithtee
      @codewithtee 5 หลายเดือนก่อน

      Can you be more specific by stating the error you are getting

    • @stormz4261
      @stormz4261 5 หลายเดือนก่อน

      @@codewithtee uhh I don’t actually know how to explain it is there a way for me the to send you the source code and you can check it cuz I’m new to laravel and stuff

    • @stormz4261
      @stormz4261 5 หลายเดือนก่อน

      @@codewithtee basically when I follow your step it doesn’t show that that account is being created

    • @stormz4261
      @stormz4261 5 หลายเดือนก่อน

      @@codewithtee I run it in local host using wamp server

    • @codewithtee
      @codewithtee 5 หลายเดือนก่อน

      @@stormz4261 send me a mail on realolamilekan@gmail.com, let organize a meet over the weekend to see how I can help you

  • @MElbadryX
    @MElbadryX 6 หลายเดือนก่อน

    Hello Sir , I see You make Great Work , keep going and Have a Nice Time

    • @codewithtee
      @codewithtee 6 หลายเดือนก่อน

      Thank you very much for the encouragement, it goes a long way ❤️

  • @KABIRUAKEEM-vd7xm
    @KABIRUAKEEM-vd7xm 6 หลายเดือนก่อน

    weldon

    • @codewithtee
      @codewithtee 6 หลายเดือนก่อน

      Thanks for the encouragement, it goes a long way

  • @codewithtee
    @codewithtee 6 หลายเดือนก่อน

    I can have that added to the description. The reason it's not been added is so you can code along. Are you find it hard to do so? Is the explanation not clear enough? Is the display not good enough? I will appreciate your feedback

  • @okechukwudiei8424
    @okechukwudiei8424 6 หลายเดือนก่อน

    do you have a github link for this code

    • @codewithtee
      @codewithtee 6 หลายเดือนก่อน

      I can have that added to the description. The reason it's not been added is so you can code along. Are you find it hard to do so? Is the explanation not clear enough? Is the code display not good enough? I will appreciate your feedback

  • @Ola6lcvk
    @Ola6lcvk 6 หลายเดือนก่อน

    Well detailed tutorial

    • @codewithtee
      @codewithtee 6 หลายเดือนก่อน

      Thank you ❤

  • @juwonadaniel
    @juwonadaniel 7 หลายเดือนก่อน

    I am beginning to accept that budgeting app should be customizable, because it's as though everyone have a unique way they want bugeting to be done for them. Of course aside the basic feature. Well done, I am following through with it.

    • @codewithtee
      @codewithtee 7 หลายเดือนก่อน

      Thanks juowon, I hope you find this suitable for you. Also open to suggestions, there are ways to customize this things

  • @codewithtee
    @codewithtee 7 หลายเดือนก่อน

    That is nice, thanks for the kind words

  • @andromadusnaruto1544
    @andromadusnaruto1544 7 หลายเดือนก่อน

    Great concept. 👍🏾 I started building something similar to this, but in Kotlin. I look forward to this series and learning from you as well.

    • @codewithtee
      @codewithtee 7 หลายเดือนก่อน

      That is nice and thanks for the kind words

  • @netnation1288
    @netnation1288 7 หลายเดือนก่อน

    I've a question, if we're using Id already, why can't we just pass the Id to other tables? Why do we still need user_id

    • @codewithtee
      @codewithtee 7 หลายเดือนก่อน

      Can you please specify the minute you referring to or particular model you confused about

    • @netnation1288
      @netnation1288 7 หลายเดือนก่อน

      @@codewithtee sorry i made a mistake.

  • @azizhamdi8455
    @azizhamdi8455 10 หลายเดือนก่อน

    and is their any admin interface because it will be good if you add some sir thank you again

    • @codewithtee
      @codewithtee 10 หลายเดือนก่อน

      No sir, this is a backend tutorial.. No interface. You can come up with one yourself

  • @azizhamdi8455
    @azizhamdi8455 10 หลายเดือนก่อน

    hi sir i hope you doing fine so my question is can i work as same as you but in my case i am using just wamp as a database and laravel 8.6.2 because i was just waiting for an output with a browser thank you

    • @codewithtee
      @codewithtee 10 หลายเดือนก่อน

      Yes you can, you can download postman to test the API's... This is a backend heavy channel. Thank you for watching and please don't forget to subscribe

  • @ifeanyinnaemego
    @ifeanyinnaemego 10 หลายเดือนก่อน

    Subscribed🎉 thanks

  • @codewithtee
    @codewithtee 10 หลายเดือนก่อน

    Thank you.. New episode dropping this weekend.

  • @abirbd369
    @abirbd369 10 หลายเดือนก่อน

    this series is gem. top class quality lecture that i had never ever seen. best of luck. waiting for next lecture

    • @codewithtee
      @codewithtee 10 หลายเดือนก่อน

      Keep watching and thanks a bunch

  • @abdulqawiytemitope8781
    @abdulqawiytemitope8781 11 หลายเดือนก่อน

    Barakallahufii 👍

    • @codewithtee
      @codewithtee 11 หลายเดือนก่อน

      Amin 😊

  • @generahben
    @generahben 11 หลายเดือนก่อน

    Nice one

    • @codewithtee
      @codewithtee 10 หลายเดือนก่อน

      Thanks 🔥

  • @maasd98
    @maasd98 ปีที่แล้ว

    Hey! I have a question... What kind of sorcery did you do to get database running? Like what was that script (URL) you used to get it working?

    • @codewithtee
      @codewithtee ปีที่แล้ว

      Hello there, Apologies I did not show that. I had my dB setup on docker container and I had not start it before recording. I can creat a different video on how to easily set that up. 😊

    • @maasd98
      @maasd98 11 หลายเดือนก่อน

      @@codewithtee I would appreciate that very much! Thank you!

    • @calebjanaltair
      @calebjanaltair 9 หลายเดือนก่อน

      Sorcery 🤣🤣🤣

  • @abdulsalamamtech
    @abdulsalamamtech ปีที่แล้ว

    Grate Video😍🥰

  • @siramiro
    @siramiro ปีที่แล้ว

    hey man, I hope you are doing fine. why you don't continue your videos. i really miss you these days, can you go for the next parts, please, it's essential to me :(

    • @codewithtee
      @codewithtee ปีที่แล้ว

      I am sorry, it's just been crazy at work.. I will try to upload the next sets this coming week

    • @siramiro
      @siramiro ปีที่แล้ว

      thanks, bro, I'm waiting for you. do not forget me, think about me all day dude, you are my hero@@codewithtee

  • @siramiro
    @siramiro ปีที่แล้ว

    man, I love your videos, and it's helping me a lot , keep going and know that I'm a big fan of you , can you upload the next chapter faster?

    • @codewithtee
      @codewithtee ปีที่แล้ว

      Thank you very much, I will be uploading a new episode this weekend. I appreciate your comment 😊