I think you need to just run a normal sql query
http://laravel.com/docs/database#running-queries
$table = DB::select('DESCRIBE users');
You can add a describe static method to your model that runs the query on the table if you want to be able to use it like you mentioned.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community