i am a novice in laravel and this is going to be a very basic question.
I am working a on a simple project using Laravel4.I have a model namely image.In fact through this model i will store uploaded image and the information associated with that image.But i don't know what should be column type or data type for image field in the migration file.
migration file:
Schema::create('images', function(Blueprint $table)
{
$table->increments('id');
$table->string('name',255);
$table->------('image');
$table->timestamps();
});
you can see that in my above migration file,i have remain empty the image field.I don't know what should be the column type for image field.
so what should be column type or the data type for a image field in laravel4 migration file?