Skip to content

Releases: Hi-Folks/lara-lens

Control the output

01 Jun 18:26
Compare
Choose a tag to compare

You can control the output via the show option. You can define:

  • config
  • connection
  • database
  • runtime
  • migration
  • all
    The defalut for --show option is all.
php artisan laralens:diagnostic --show=config --show=connection --show=database --show=runtime --show=migration

If you want to see only database information:

php artisan laralens:diagnostic --show=database

A better ouput

29 May 13:04
Compare
Choose a tag to compare

A better ouput 💅

  • extracting long message from tables
  • settings width for columns tables

Catch HTTP Exception

28 May 19:17
Compare
Choose a tag to compare

This is a quick fix for catching HTTP connection exception

Show infos for DB connection, tables and rows

27 May 19:38
Compare
Choose a tag to compare

Added a section to show DB informations:

  • detect DB connection type
  • get tables for mysql
  • get tables for sqlite
  • count and retrieve last row from a table. Table and column names could be specified as input parameters
  • test database diagnostics
  • update readme for documentation

Dump whole config

22 May 06:31
Compare
Choose a tag to compare
  • Add new argument as input (it is optional):
    • overview: you can see configuration, http connection, db connection etc
    • allconfigs: you can see verbose configuration from Laravel application. Try to use 'php artisan laralens:diagnostic allconfigs' in your laravel application. You will see the dump of all configuration parameters in json format

Runtime config and Migration status

22 May 05:46
Compare
Choose a tag to compare
  • Add runtime config:
    • App::getLocale()
    • App::environment())
    • Generated url via asset() and url() helpers
  • Invoke migrate:status

Welcome Lara Lens

21 May 05:20
Compare
Choose a tag to compare
  • Add laralens:diagnostic artisan command (Laraval)
  • Check config parameter like app.url, app.locale, app.url and database.*
  • Check the http connection with app.url defined in base configuration
  • Check the connection with DB and counts the row for a specific table (users by default)