Alex Lancer
Alex Lancer
  • 40
  • 1 276 068
Auto CRUD Generator - #5 - Custom Table Columns - Callbacks | CodeIgniter 4
In this fifthpart of the tutorial we will continue working on Auto CRUD Generator and will expand the existing code by adding the functionality to create custom columns in auto-generated table.
GitHub Helper Files Repository: github.com/alexlancer/CodeIgniter4-CRUD-Library-Tutorial-files
In this part of the "Auto CRUD Generator for CodeIgniter 4" tutorial you will learn:
- How to create a custom column in table
Auto CRUD Generator for CodeIgniter 4 is a Library that will auto generate Create/Read/Update/Delete functionality for your CRUD operations, based on the provided options from your Controller.
This project is especially helpful to the back-end developers who deal with Forms and Validations constantly.
Auto CRUD Library for CodeIgniter 4 Repository: github.com/alexlancer/Auto-CRUD-Generator-CodeIgniter-4-
มุมมอง: 8 209

วีดีโอ

Auto CRUD Generator - #4 - File Upload Fields | Single & Multiple Uploads | CodeIgniter 4
มุมมอง 7K4 ปีที่แล้ว
In this forth part of the tutorial we will continue working on Auto CRUD Generator and will expand the existing code by adding File Upload fields in the generated forms. GitHub Helper Files Repository: github.com/alexlancer/CodeIgniter4-CRUD-Library-Tutorial-files In this part of the "Auto CRUD Generator for CodeIgniter 4" tutorial you will learn: - How to Upload a File - How to setup validatio...
Auto CRUD Generator - #3 - Relational Data in Forms | CodeIgniter 4
มุมมอง 7K4 ปีที่แล้ว
In this third part of the tutorial we will continue working on Auto CRUD Generator and will expand the existing code by adding Relational Data in the generated forms. GitHub Helper Files Repository: github.com/alexlancer/CodeIgniter4-CRUD-Library-Tutorial-files In this part of the "Auto CRUD Generator for CodeIgniter 4" tutorial you will learn: - How to display One-to-One relational data - How ...
Auto CRUD Generator - #2 - Add & Edit Forms Generation w/ Validation and More | CodeIgniter 4
มุมมอง 11K4 ปีที่แล้ว
In this second part of the tutorial we will continue working on Auto CRUD Generator and will expand the the existing code to Generate Add Form and Edit Form completely automatically just by setting some very basic stuff. This is where the magic begins. GitHub Helper Files Repository: github.com/alexlancer/CodeIgniter4-CRUD-Library-Tutorial-files In this part of the "Auto CRUD Generator for Code...
CodeIgniter 4 from Scratch - #15 - Transactions | Database Transactions in Ci4
มุมมอง 8K4 ปีที่แล้ว
In this video of CodeIgniter 4 From Scratch Series we will see how to work with Transactions in CodeIgniter 4 and also understand how transactions can help keep the data integrity in the database. CodeIgniter 4 From Scratch Series, the series that are intended to help you get started with CodeIgniter 4 even if you have never worked with PHP frameworks before. This course will not only help you ...
CodeIgniter 4 from Scratch - #14 - Multiple Databases | Working with Multiple Databases
มุมมอง 16K4 ปีที่แล้ว
In this video of CodeIgniter 4 From Scratch Series we will see how to work with multiple databases. We will cover two methods that Codeigniter 4 provides us with: The first method is to use the same database connection object and setting the database manually. The second method is to use a separate database connection instance with predefined settings from Database.php file and/or .env file Cod...
Auto CRUD Generator - #1 - Intro & Generate Searchable Form | CodeIgniter 4
มุมมอง 40K4 ปีที่แล้ว
Auto CRUD Generator for CodeIgniter 4 is a Library that will auto generate Create/Read/Update/Delete functionality for your CRUD operations, based on the provided options from your Controller. GitHub Helper Files Repository: github.com/alexlancer/CodeIgniter4-CRUD-Library-Tutorial-files This project is especially helpful to the back-end developers who deal with Forms and Validations constantly....
CodeIgniter 4 from Scratch - #13 - Image Manipulation
มุมมอง 13K4 ปีที่แล้ว
In this video of CodeIgniter 4 From Scratch Series we will see how to manipulate images using CodeIgniter. The goal of this video is to show you how to: - Load Image service - Crop an Image (fit method) - Flip an Image - Rotate an Image - Save new Image to new location CodeIgniter 4 From Scratch Series, the series that are intended to help you get started with CodeIgniter 4 even if you have nev...
CodeIgniter 4 from Scratch - #12 - File Validation & File Upload
มุมมอง 20K4 ปีที่แล้ว
In this video of CodeIgniter 4 From Scratch Series we will see how to Validate a File field and then How to Upload the file once the validation is successful. We will take a look at single file upload and on multiple files uploaded at once. The goal of this video is to show you how to: - Perform File Validation - Upload a File to a specific location - Rename files on upload - Control types of f...
CodeIgniter 4 from Scratch - #11 - Form Validation
มุมมอง 27K4 ปีที่แล้ว
In this video of CodeIgniter 4 From Scratch Series we will see what is a Form Validation Library. You will learn how easy it is perform server-side validation that is one of the most common tasks that developers must do in every project. The goal of this video is to show you how to: - Initialize Form Helper - Create Validation Rule sets - Display errors - Customize errors - Create custom rules ...
VueJS & CodeIgniter 4 - #5 - RESTapi CRUD | Create | Read | Update | Delete Operations
มุมมอง 8K4 ปีที่แล้ว
In this fifth part of the VueJS & CodeIgniter 4 Web App series we will create all the main CRUD operations to edit the posts from our web application's back end. In this video you will learn how to: - Create a New Item - Upload an Image - Edit an existing Item - Delete an Item - Retrieve and View an Item In this video tutorial series - VueJS & CodeIgniter 4 Web App - you will learn how to build...
VueJS & CodeIgniter 4 - #4 - User Login | User Sign in | Using Axios
มุมมอง 7K4 ปีที่แล้ว
In this fourth part of the VueJS & CodeIgniter 4 Web App series we will create the User Signin Process using Axios to make an HTTP request to CodeIgniter 4 REST api server via VueJS. Also you will learn how to setup Axios interceptors that help you automate some tasks during your request. - HTML form structure - Axios configuration enhancements - Axios Interceptors configuration - Making HTTP r...
VueJS & CodeIgniter 4 Web App - #3 - User Registration | Signup - Axios Setup
มุมมอง 9K4 ปีที่แล้ว
In this third part of the VueJS & CodeIgniter 4 Web App series we will create the User Signup Process and also we will make our first HTTP request to CodeIgniter 4 REST api server using VueJS, Axios. - HTML form structure - Alert component - Axios setup - Making HTTP request to register a user In this video tutorial series - VueJS & CodeIgniter 4 Web App - you will learn how to build an app usi...
VueJS & CodeIgniter 4 Web App - #2 - Vue Router Installation and Configuration
มุมมอง 12K4 ปีที่แล้ว
In this second part of the VueJS & CodeIgniter 4 Web App series we will install VueRouter. Create basic routes that will be required by the project: - VueRouter Installation - VueRouter Configuration - Routes.js files - Import VueRouter into the project In this video tutorial series - VueJS & CodeIgniter 4 Web App - you will learn how to build an app using VueJS framework along with CodeIgniter...
VueJS & CodeIgniter 4 Web App - #1 - Overview & Project Setup
มุมมอง 34K4 ปีที่แล้ว
In this video tutorial series - VueJS & CodeIgniter 4 Web App - you will learn how to build an app using VueJS framework along with CodeIgniter 4 RESTapi server. In this first part of the series we will take a look at the final project and we will: - Install CodeIgniter 4 RESTapi server - Configure Database - Install VueJS Project specific GitHub repositories: CodeIgniter 4 RESTapi Server: gith...
CodeIgniter 4 from Scratch - #10 - Query Builder
มุมมอง 30K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #10 - Query Builder
CodeIgniter 4 from Scratch - #9 - Models
มุมมอง 36K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #9 - Models
CodeIgniter 4 from Scratch - #8 - Views | View Layouts | Part 3/3
มุมมอง 21K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #8 - Views | View Layouts | Part 3/3
CodeIgniter 4 from Scratch - #7 - Views | View Cells | Part 2/3
มุมมอง 19K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #7 - Views | View Cells | Part 2/3
CodeIgniter 4 from Scratch - #6 - Views | Basic Views | Part 1/3
มุมมอง 25K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #6 - Views | Basic Views | Part 1/3
CodeIgniter 4 from Scratch - #5 - Routes
มุมมอง 40K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #5 - Routes
CodeIgniter 4 from Scratch - #4 - Controllers
มุมมอง 47K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #4 - Controllers
CodeIgniter 4 from Scratch - #3 - Folder Structure Overview
มุมมอง 60K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #3 - Folder Structure Overview
CodeIgniter 4 from Scratch - #2 - Local Environment Setup | XAMPP Installation | Composer
มุมมอง 82K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #2 - Local Environment Setup | XAMPP Installation | Composer
CodeIgniter 4 from Scratch - #1 - Introduction
มุมมอง 106K4 ปีที่แล้ว
CodeIgniter 4 from Scratch - #1 - Introduction
CodeIgniter 4 RESTapi Server - Part 4 - Image File Upload
มุมมอง 11K4 ปีที่แล้ว
CodeIgniter 4 RESTapi Server - Part 4 - Image File Upload
Laragon Installation & How-to Use Tutorial
มุมมอง 65K4 ปีที่แล้ว
Laragon Installation & How-to Use Tutorial
CodeIgniter 4 Real Time Chat App using WebSockets
มุมมอง 46K4 ปีที่แล้ว
CodeIgniter 4 Real Time Chat App using WebSockets
Hide Real Image URL from HTML using PHP
มุมมอง 11K4 ปีที่แล้ว
Hide Real Image URL from HTML using PHP
CodeIgniter 4 RESTapi Server - Part 3 - User Registration & Custom Storage
มุมมอง 8K4 ปีที่แล้ว
CodeIgniter 4 RESTapi Server - Part 3 - User Registration & Custom Storage

ความคิดเห็น

  • @ideaplusagency
    @ideaplusagency 23 ชั่วโมงที่ผ่านมา

    Codeigniter version 4.55 routes file does not look like this anymore

  • @swarnatharar5440
    @swarnatharar5440 12 วันที่ผ่านมา

    Is composer necessary to download for code ignitor because I already have xampp and php on system, but composer I didn't download Is it necessary, if I try does it throw an error?

  • @dollymishra4179
    @dollymishra4179 18 วันที่ผ่านมา

    after a lot of search got best video for live chat with websocket... ❤❤

  • @OneEye-k3m
    @OneEye-k3m 28 วันที่ผ่านมา

    I can't insert what is problem?

    • @CT-YS
      @CT-YS 2 วันที่ผ่านมา

      Try CAPS for getMethod() == "POST"

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

    Hello, thank you, your tutorial helped me with a project, but I have a little problem with the crop part, I get the error "The framework needs the following extension(s) installed and loaded: "GD"". Did you use extra configuration for that part?

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

    Dude's a hero

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

    I have not set the base url to localhost instead of the default ( in my case : localhost/ci4/public) I am unable to route to the welcome page using base/home and base/index. Why is it so?

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

    Very helpful tutorial. Thank you. May i known the name of your VSCode theme?

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

    Laragon has apache server like xampp or wamp?

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

    Sorry buddy, this content didn't succeeded in holding my attention, please increase the pace and adjust to clear audio input

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

    Creative video, keep it up, thank you :)

  • @AjayKumar-qu9tl
    @AjayKumar-qu9tl 2 หลายเดือนก่อน

    Bro, my files are taking lot of time to upload, it takes around 5 mins. What should I do to enhance the speed

  • @Leo-xp3vt
    @Leo-xp3vt 3 หลายเดือนก่อน

    Thank you Alex 😃

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

    you can use faker library and seeder feature to popolate database tables with dummy data

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

    in which video did you implement the rest api in codeigniter 4?

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

    for me the filter does not work, when i click on replay XHR on min 28:09 i still riceive the error

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

    Thanks for the tutorial and projects. Very helpful Alex

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

    keep it up bro

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

    tnx 🔥🔥

  • @ArunKumar-wl7ok
    @ArunKumar-wl7ok 5 หลายเดือนก่อน

    Hi, it is possible to implement it in Codeigniter 3.0.

  • @AmirAtta-yq7wz
    @AmirAtta-yq7wz 5 หลายเดือนก่อน

    My Routes.php has only following code, where is other lines of code you just shared on screen? <?php use CodeIgniter\Router\RouteCollection; /** * @var RouteCollection $routes */ $routes->get('/', 'Home::index');

  • @AmirAtta-yq7wz
    @AmirAtta-yq7wz 5 หลายเดือนก่อน

    I installed codegniter 4 with composer like you tell. But my Routes.php has only following lines: <?php use CodeIgniter\Router\RouteCollection; /** * @var RouteCollection $routes */ $routes->get('/', 'Home::index'); Where are other piecce of code you shared with us on you screen like setDefaultController, setDefaultMethod etc.

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

    Without defining the routes in routes.php , the page is showing as 404 error!...when i am calling a page by controllername/method name. how to resolve it?

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

    doesn't work, as many of us already said in the comment section.

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

    Please how do I get the right-click Duplicate in my vs code explorer

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

    Please how do I get the right-click Duplicate in my vs code explorer

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

    there is no vendor folder on your github project, where can i find it ...?

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

    hello sir, i have clone from github but after npm install and run error depency,how can run sir...? 12% building 20/21 modules 1 active ...pp\htdocs\ci4vue\frontend\src outes.jsD:\xampp\htdocs\ci4vue\frontend ode_modules\webpack\lib\Dependency.js:355 throw new Error( ^ Error: module property was removed from Dependency (use compilation.moduleGraph.updateModule(dependency, module) instead) at ProvidedDependency.set (D:\xampp\htdocs\ci4vue\frontend ode_modules\webpack\lib\Dependency.js:355:9) at iterationDependencies (D:\xampp\htdocs\ci4vue\frontend ode_modules\@vue\cli-service ode_modules\webpack\lib\Compilation.js:836:21) at D:\xampp\htdocs\ci4vue\frontend ode_modules\@vue\cli-service ode_modules\webpack\lib\Compilation.js:846:8 at D:\xampp\htdocs\ci4vue\frontend ode_modules\@vue\cli-service ode_modules\webpack\lib\NormalModuleFactory.js:405:6 at D:\xampp\htdocs\ci4vue\frontend ode_modules\@vue\cli-service ode_modules\webpack\lib\NormalModuleFactory.js:155:13 at eval (eval at create (D:\xampp\htdocs\ci4vue\frontend ode_modules\@vue\cli-service ode_modules\tapable\lib\HookCodeFactory.js:33:10), <anonymous>:14:1) at D:\xampp\htdocs\ci4vue\frontend ode_modules\case-sensitive-paths-webpack-plugin\index.js:158:9 at D:\xampp\htdocs\ci4vue\frontend ode_modules\case-sensitive-paths-webpack-plugin\index.js:113:7 at D:\xampp\htdocs\ci4vue\frontend ode_modules\case-sensitive-paths-webpack-plugin\index.js:113:7 at CaseSensitivePathsPlugin.fileExistsWithCase (D:\xampp\htdocs\ci4vue\frontend ode_modules\case-sensitive-paths-webpack-plugin\index.js:83:5) at D:\xampp\htdocs\ci4vue\frontend ode_modules\case-sensitive-paths-webpack-plugin\index.js:106:10 at CaseSensitivePathsPlugin.getFilenamesInDir (D:\xampp\htdocs\ci4vue\frontend ode_modules\case-sensitive-paths-webpack-plugin\index.js:51:5) at CaseSensitivePathsPlugin.fileExistsWithCase (D:\xampp\htdocs\ci4vue\frontend ode_modules\case-sensitive-paths-we

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

    How do you enable auto code suggestion for code igniter in your Visual Studio Code?

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

    I apprecaite it man, will watch all

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

    Hola Alex, excelente tutorial man. Muchas gracias!

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

    Hi Alex. I am trying to move from CI3 to CI4.5.1. I followed your video, but the process is now a bit outdated. I can only get the Welcome Screen to show and no other controller (Get error 404 - Can't find a route for 'GET: xxxx). After a week of trying all sorts of recommendations, I have got nowhere. Never had any issues with CI3 and Grocery Crud.

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

    I use localhost:9001, but the code always redirect to localhost. Changed the baseUrl in app.php but not working too. Any suggestion?

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

    Fine tutorial! The CI user guide now describes simple view cells and controlled view cells. It looks a bit abstract to me, maybe an idea for a future tutorial / update? Cheers!

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

    God bless you 🎉🎉🎉🎉❤

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

    This is cool, but I cant for the life of me fig out how to use this with my database. I am not using an array because that’s not practical. I have links created with hash/$_GET[‘h’], but since this code uses an array, there’s no clear instruction for how to use it with database fetch 😣

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

    11:32

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

    10:37

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

    Should i change DocumentRoot everytime if i have to run different project?

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

    Thank you so much for the great content!

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

    Hi , there is no plugins folder in colorlib/AdminLTE so no css apply in admin dashboard.

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

    There is no plugin folder in adminlte zip file which I downloaded from your Github account. Can anyone help me?

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

    I love this series. I can't seem to get the Routs.php to work. It is as if i didnt get the same file that you have in your video. This is the contents of my entire routes.php file. <?php use CodeIgniter\Router\RouteCollection; /** * @var RouteCollection $routes */ $routes->get('/', 'Home::index');

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

    Hey, first of all thanks for the tutorial. Regarding minute 39:13 of this video: No one in the comments seems to have noticed this vulnerability. You are using a user id as the GET parameter called "access_token" to establish a WebSocket connection. However, this compromises the purpose of authentication, as anyone can change the GET parameter and thus impersonate any user. The two servers (Apache & WebSocket server) should actually refer to the same session. Do you have a tutorial on this? :)

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

    Great course, but how do we get the results passed to a view? small sample would help, appreciated!

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

    I always get the error code 404 Can't find a route for 'get: home'. when I want to use the localhost/home, my CI4 is 4.4.5 version

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

      I follow the video instruction, what will be the problem?

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

    So no routes here

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

    I had to make a Route first in Routes.php. Is that due to a newer version or what?

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

    Instead of adjusting the documentRoot of apache i would recommend to create a virtualHost in apache config defined on a domain that you could list in your hosts file. Then you could use that domain name to access the public folder. I mean this literally prevents you from setting up other projects besides your codeigniter tutorial ;)

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

      If you're running multiple applications, pay attention to psy237's comment. If you've installed xampp, docs for doing what they said are here: localhost/dashboard/docs/configure-vhosts.html

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

    These are great thanks! Is the finished project in a GH repo?