for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Containers\Country\Models;
use App\Containers\User\Models\User;
use Webpatser\Countries\Countries;
/**
* Class Country.
*
* @author Mahmoud Zalt <[email protected]>
*/
class Country extends Countries
{
public function users()
return $this->hasMany(User::class);
}