public function show($id)
 {
     return response()->json(['data' => Country::find($id)]);
 }
 public function index($country_id)
 {
     return response()->json(['data' => Country::find($country_id)->provinces]);
 }