Is there any method available in Laravel 5 / 5.1 with which we can get the name of a table column, its type and length, Metal data of a table table?
eg:
Name | Type | Length
ID | Integer | 11
Name | varchar | 100
Email | varchar | 100
Password| md5 | 82
Address | tinytext|
DOB | date |
Status | enum(0,1)|
source
share