Tinker with the Data in Your Laravel Apps with PHP Artisan Tinker

Introduction Today we’ll talk about how to use one of Laravel’s lesser-known features to quickly read data from our Laravel applications. We can use Laravel artisan’s built-in php artisan tinker to mess around with your application and things in the database. Laravel artisan’s tinker is a REPL (read-eval-print loop). A REPL is an interactive language…