I want to be able to create a table using
Schema::create('mytable',function($table)
{
$table->increments('id');
$table->string('title');
});
But before that I would like to check if the table already exists, perhaps something like
Schema::exists('mytable');
However, the above function does not exist. What else can I use?