Thursday, 24 August 2023

125 Useful vs code extensions to develop laravel application

 DotENV

EditorConfig for VS Code

Laravel Artisan

Laravel Assist

Laravel Blade formatter

Laravel Blade Snippets

Laravel Blade Wrapper

Laravel Create View

Laravel Extension Pack

Laravel Extra Intellisense

Laravel goto view

laravel intellisense

Laravel Snippets

laravel-goto-components

laravel-jump-controller

PHP Intelephense


Wednesday, 12 July 2023

124.Useful auto complete extensions of vs code

 1. .env

.env extension-> variable name in blue in env file

2.Laravel Extra Intellisense

laravel extra intellesense package->get complete view files in route('') and view('')

return redirect()->route('');


3.PHP Intelephense(elephant icon) ->to get namespace of model automatically and add in top of the file

Eg: type $user=User enter key(get use App\Models\Entry; name space in top of controller page)

4.laravel extension pack

to get syntax of foreach(seclect :b),for,switch,if

support blade commenting system 

ctrl+/->({{-- --}})

5.laravel intellisense

to get columns in db table

$users=User::where('')->get all columns in user table

6.laravel blade snippets

html auto complete


.row+enter key

<div class="row"></div>


#row+enter key

<div id="row"></div>


html:5(to get html structure)

Eg:


<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <meta http-equiv="X-UA-Compatible" content="ie=edge">

    <title>Document</title>

</head>

<body>

    

</body>

</html>


select>option+enter key

select>option*5+enter key

<select name="" id="">

<option value=""></option>

</select>


ul>li*10

ul.row>li*10

7.laravel assists(blue backround icon)