Basically you can define a default value for an Eloquent model via migrations or within the Eloquent model:
Define default value in migration example:
$table->string('locale')->default('en');
Define default value within Eloquent model:
protected $attributes = ['locale' => 'en'];
What are the pros and cons of these two approaches? Which one is better (for a specific use case)?
If you use migrations, the default should be set in the migration. The main purpose for this is to allow anyone who might work on your app alongside you to see the database structure as a whole.
There really isn't a pro or con per-se to doing it this way or the Model way, other than having your structure in one place is the recommended. Your model should be light. Not a lot needs to be happening there. It can get confusing when you throw changes in all these different files.
It will come down to preference, but the recommended way is to use Migrations because that is the sole purpose of and why the migration exists, for table structure.