ichtrojan/laravel-location

Table name should be extendible

erayaydin opened this issue · 2 comments

Hello,

Currently, table names hardcoded . Maybe with a config variable, we can set extendible for table names. We'll use that config variable on migration,model and seeder files.

For example;

return [
  ...
  'tables' => [
    'countries' => 'my_countries',
    'cities' => 'my_cities',
    'states' => 'my_states',
  ]
  ...
];

Great idea, I'd be happy to see a PR.