In Laravel

Laravel Artisan Route Command: The route:list Command

Dec 7, 2016

Learn how to use the route:list command in Laravel to display all registered routes for your application. This command generates a table with details such as domain, method, URI, name, action, and middleware. You can filter the table using options like --method, --name, and --path to narrow down the results. Additionally, you can reverse the order of the routes using --reverse and sort the table by different columns using the --sort option. Combine filters for even more specific results.
Laravel Artisan Schedule Command: The schedule:run Command

Dec 7, 2016

Learn how to use the schedule:run command in Laravel to run tasks or commands. It is commonly used with a scheduler utility like Cron. You can run the command directly in your terminal to execute scheduled tasks. If there are no tasks ready to run, you will see a message indicating so. This command is helpful for troubleshooting any issues with the scheduler.
Laravel Artisan Session Table: The session:table Command

Dec 7, 2016

The session:table command generates a migration for the sessions database table, which is essential for using the database session driver. This command has no parameters and can be executed with php artisan session:table. Running this command multiple times will create multiple migrations, so it's important to change the table name in additional migration files to avoid errors during migration execution.
Laravel Artisan: The Tinker Command

Dec 7, 2016

Learn how to use Laravel's tinker command to interact with your application and experiment or debug issues. tinker is a REPL (read-eval-print loop) environment that allows you to execute PHP code within the context of your Laravel application. You can enter code statements and immediately see the results, just like Chrome's Developer Tools. The Tinker REPL is powerful and allows you to interact with framework components, classes, and even execute code in the context of your application. You can create new instances of classes, set properties, call methods, retrieve data from the database, and more.
Laravel Artisan Tinker: The buffer Command

Dec 7, 2016

The buffer command in JavaScript is useful for viewing the contents of a multi-line expression without interrupting the input process. It allows you to easily check what you have typed so far. You can also use the --clear option to clear the current buffer if needed. Check out the example session provided to see how it works.
Laravel Artisan Tinker: The clear-compiled Command

Dec 7, 2016

Learn how to clear the compiled classes and services application cache with the clear-compiled command. This command will remove the compiled.php and services.php files located in bootstrap/cache/ directory. It's equivalent to the php artisan clear:compiled command.
Laravel Artisan Tinker: The doc Command

Dec 7, 2016

The doc command in Laravel allows you to view the documentation for various objects, classes, constants, methods, functions, and properties. It accepts the name or reference to the item as its argument. This command is particularly helpful due to Laravel's extensive code documentation. For example, you can easily access the documentation for the config helper function or the $table property on an Eloquent model using doc.
Laravel Artisan Tinker: The down Command

Dec 7, 2016

Learn how to put your application into maintenance mode using the down command. By creating a file named down in the framework storage path, you can ensure your application is temporarily unavailable. Discover how this command parallels the php artisan down command.
Laravel Artisan Tinker: The dump Command

Dec 7, 2016

The dump command in Laravel's Tinker REPL is used to display information about a variable or class instance in the console window. It utilizes Symfony's VarDumper console component. The dd helper function is also available in Tinker, providing useful output in the context of a Laravel application.
Laravel Artisan Tinker: The env Command

Dec 7, 2016

Learn how to use the env command in Laravel to retrieve the name of the current framework environment. The environment name is specified in the .env file and can be accessed using the APP_ENV entry. This command is similar to php artisan env.
Laravel Artisan Tinker: The history Command

Dec 7, 2016

Learn how to use the history command in the Tinker REPL session to retrieve previously entered commands. With its options, you can easily search, replay, and even save commands to a file. Check out this example session and explore the various options available to streamline your workflow.
Laravel Artisan Tinker: The ls Command

Dec 7, 2016

Learn how to use the ls command to obtain information about variables, constants, functions, classes, interfaces, traits, properties, and methods in PHP. Discover how to use the ls command without any options to list defined variables in the current scope. Understand that the ls command can be used to inspect object instances to learn about their properties and methods. Find out that using the ls command with non-object types will result in an error. Explore an example using the ls command on an Eloquent model instance to display class constants, properties, and methods. Discover that the ls command offers various options and filters to narrow down the output, such as viewing only properties of an Eloquent model.
Laravel Artisan Tinker: The migrate Command

Dec 7, 2016

Learn how to use the migrate command in Laravel to run migrations against the database. With options like --database to specify the database connection, --force to run migrations in a production environment, and --pretend to display SQL queries instead of running migrations, this command provides flexibility. Additionally, you can use flags like --seed to execute the db:seed command after running migrations and --step to increment the migration's batch number for rollback purposes.
Laravel Artisan Tinker: The optimize Command

Dec 7, 2016

Learn how to use the optimize command in Laravel to improve the performance of your application. This command offers two flags: --force to write the compiled class file, and --psr to disable the optimized class map loader. The compiled files cache is stored in bootstrap/cache/compiled.php. Find out how to implement these options in your development environment and increase the efficiency of your Laravel application.

Some absolutely amazing
people

The following amazing people help support this site and my open source projects ♥️
If you're interesting in supporting my work and want to show up on this list, check out my GitHub Sponsors Profile.