Posts

Showing posts from July, 2024

What is MVC?

Image
  Models : Business Logic(Login etc), Database Communication View : User interface(Colorr,Text.Display UI) Controller :Handle user interaction and select a view to render,communicate model and view.

Laravel 11x Installation process by cmd

Image
Follow step by step  C:\Users\sky>php -v C:\Users\sky>composer global require laravel/installer C:\Users\sky>laravel -v C:\Users\sky>laravel new blog Successfully Done! Now,Go to the created blog or your make project

Laravel Installation Requirments Process

Install Xampp for php, Mysql and phpmyAdmin Install Composer Make Laravel app Check App is running  Check Laravel Version Check php version

How to install laravel installation setting with xampp

First of all install xampp  After installation start apache, mysql.And, then install composer. Composer will automatically set php path from xampp.

Laravel Install at windows 11

CMD >  composer global require laravel/installer laravel new project-app

Laravel remove from windows 11

cmd > composer global remove laravel/installer Enter

Composer Check

 Windows Cmd> type composer. If something show like it.Its mean ok PS C:\Users\sky> composer    ______   / ____/___  ____ ___  ____  ____  ________  _____  / /   / __ \/ __ `__ \/ __ \/ __ \/ ___/ _ \/ ___/ / /___/ /_/ / / / / / / /_/ / /_/ (__  )  __/ / \____/\____/_/ /_/ /_/ .___/\____/____/\___/_/                     /_/ Composer version 2.7.7 2024-06-10 22:11:12 Usage:   command [options] [arguments] Options:   -h, --help                     Display help for the given command. When no command is given display help for the list command   -q, --quiet                    Do not output any message   -V, --version                  Display this application version       --ansi|--no-an...

Php version check

Windows powershell >  Php -v

How to install xampp at windows?

XAMPP is an easy to install Apache distribution containing MariaDB, PHP, and Perl. Just download and start the installer. It's that easy. Installers created using  InstallBuilder . Go to download Click Here

Python Hello world

Print "Hello World"