A collection of extensions for Laravel development by Mr Chetan (Chetan Bhalothia).
VS Code extension pack help to create a your Laravel app.
You not need to install all extensions one by one just this extension pack for Laravel development.
This Extension combination of 3 Extension Pack
- Mr Chetan Laravel Extension Pack
- Mr Chetan Always On Extension Pack
- Mr Chetan Recommended Extension Pack
- Open VS Code and click on Extensions Icon in the Activity Bar.
- Type mrchetan.laravel-extension-pack
- Install the Extension Pack.
This extension pack includes the following extensions:
-
AWS Toolkit - Including support for CodeWhisperer, CodeCatalyst, Lambda, S3, CloudWatch Logs, and many other services
-
Alpine.js IntelliSense - Simple IntelliSense & Snippets for Alpine.js framework.
-
Better PHPUnit - A better PHPUnit test runner
-
Composer Intelephense - Intelephense for composer the PHP dependency manager.
-
DotENV - Support for dotenv file syntax.
-
Env Symbol Provider - Env files Symbol Provider
-
EditorConfig for VS Code - EditorConfig Support for Visual Studio Code.
-
Format HTML in PHP - Provides formatting for the HTML code in PHP files using JSbeautify - Works well paired with a PHP formatting extension.
-
Headwind - Headwind is an opinionated Tailwind CSS class sorter for Visual Studio Code. It enforces consistent ordering of classes by parsing your code and reprinting class tags to follow a given order.
-
JavaScript (ES6) code snippets - Code snippets for JavaScript in ES6 syntax.
-
Laravel Artisan - Run Laravel Artisan commands within Visual Studio Code.
-
Laravel Extra Intellisense - better intellisense for laravel projects.
-
Laravel Blade formatter - Laravel Blade formatter for VSCode.
-
Laravel Blade Snippets - Laravel blade snippets and syntax highlight support.
-
Livewire Goto - Livewire goto vscode extension.
-
Laravel Goto Components - Laravel Goto Components is a Visual Studio Code extension that allows you to quickly jump to components in your Laravel project.
-
Laravel Goto Config - Quick jump to config in Laravel project.
-
Laravel Goto Env - Quick jump to env.
-
Laravel goto view - Quick jump to view.
-
laravel intellisense - Laravel intellisense for Visual Studio Code.
-
laravel-goto-controller - Alt + click to navigate from a route to a respective controller file.
-
Laravel Model Snippets - Quickly get up and running with your Laravel Models
-
Laravel Snippets - laravel and php snippets for common functions and classes.
-
Laravel Snippets - Laravel snippets for Visual Studio Code (Support Laravel 5 and above).
-
Livewire Language Support - Snippets, Parameter Discovery, Syntax Highlighting and Formatting for Livewire.
-
PHP Debug - Debug support for PHP with XDebug.
-
PHPDoc Comment - .Add phpdoc @param and @return tag for selected function signatures.
-
PHP Intelephense - PHP code intelligence for Visual Studio Code.
-
PHP Namespace Resolver - Import and expand php namespaces.
-
PHP Sniffer - Uses PHP_CodeSniffer to format and lint PHP code.
- PHP Coding Standard - This repository contains rulesets for PHP CodeSniffer and PHP Mess Detector along with some custom rules.
-
PhpStorm Parameter Hints in VScode - PhpStorm parameter hint for VS Code.
-
Tailwind CSS IntelliSense - Intelligent Tailwind CSS tooling for VS Code.
-
Code Spell Checker - Spelling checker for source code
-
File Utils - A convenient way of creating, duplicating, moving, renaming and deleting files and directories.
-
GitHub Copilot - Your AI pair programmer
-
GitHub Copilot Chat - AI chat features powered by Copilot
-
GitHub Actions - GitHub Actions workflows and runs for github.com hosted repositories in VS Code
-
GitHub Codespaces - Your instant dev environment
-
Git History - View git log, file history, compare branches or commits
-
GitLens — Git supercharged - Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more.
-
GitHub Repositories - Remotely browse and edit any GitHub repository
-
Remote Repositories - Remotely browse and edit git repositories
-
Git Graph - View a Git Graph of your repository, and perform Git actions from the graph.
-
GitHub Pull Requests and Issues - Pull Request and Issue Provider for GitHub.
-
Material Theme - The most epic theme now for Visual Studio Code
-
Material Icon Theme - Material Design Icons for Visual Studio Code.
-
Auto Close Tag - Automatically add HTML/XML close tag, same as Visual Studio IDE or Sublime Text.
-
Auto Rename Tag - Auto rename paired HTML/XML tag.
-
Better Comments - Improve your code commenting by annotating with alert, informational, TODOs, and more!.
-
Bookmarks - Mark lines and jump to them
-
Color Highlight - Highlight web colors in your editor.
-
CSS Peek - Allow peeking to css ID and class strings as definitions from html files to respective CSS. Allows peek and goto definition.
-
Error Lens - Improve highlighting of errors, warnings and other language diagnostics.
-
Image preview - Shows image preview in the gutter and on hover
-
Paste JSON as Code - Copy JSON, paste as Go, TypeScript, C#, C++ and more.
-
Live Server - Launch a development local Server with live reload feature for static & dynamic pages.
-
Prettier - Code formatter - Code formatter using prettier.
-
Remote Development - An extension pack that lets you open any folder in a container, on a remote machine, or in WSL and take advantage of VS Code's full feature set.
-
REST Client - REST Client for Visual Studio Code.
-
Snapcode - Snapcode for your code.
-
SVG - SVG Coding, Minify, Pretty, Preview All-In-One.
-
Svg Preview - Preview for Svg files.
-
Version Lens - This extension shows version information when opening a package or project for one of the following:composer,dotnet,dub,maven,npm,jspm,pnpm,pub
-
Visual Studio IntelliCode - AI-assisted development.
-
vscode-faker - Generate fake data for name, address, lorem ipsum, commerce and much more
-
vscode-pdf - Display pdf file in VSCode..
- Read Laravel Documentation
- Read Livewire Documentation
- Read Tailwindcss Documentation
- Read Laravel Jetstream Documentation
- Contact Mr Chetan
composer global require laravel/installer
laravel new <AppName>
Example : laravel new chetancomposer install
npm install
npm run dev
npm run wathc
npm run production
php artisan storage:link
php artisan key:generate
php artisan migrate
php artisan serve
php artisan config:cache
php artisan make:controller <ControllerName> -r
Example : php artisan make:controller Users -r
-r is used to add a resource controllerphp artisan make:model <ModelName> -m
Example : php artisan make:model User -m
-m is used to create a migratioinphp artisan make:migration <MigrationFileName> --table=<tableName>
Example : php artisan make:migration add_booing_date_field_bookings --table=bookingsphp artisan make:middleware <MiddlewareName>
Example : php artisan make:middleware IsAdminphp artisan make:mail <mailName> -m emails.<mailFileName>
Example : php artisan make:mail Enquiry -m emails.enquiryphp artisan make:seeder <SeederName>
Example : php artisan make:seeder Settingslaravel new v8 --jet --stack livewire --teams
php artisan down
php artisan up
php artisan vandor:publish
php artisan migrate:rollback
Enjoy Chetan's Extension Pack!